commit 63cea8cb826be02b71ef547a89eac9a77aa2cec4 Author: MiaPepsi <113872602+MiaPepsi@users.noreply.github.com> Date: Sun Sep 18 23:08:36 2022 -0400 Add files via upload diff --git a/deckcleaner b/deckcleaner new file mode 100644 index 0000000..45a4272 --- /dev/null +++ b/deckcleaner @@ -0,0 +1,12 @@ +#! /bin/bash + +# this script will clear the shadercash folder from your steamdeck + + + + + if zenity --question --title="Confirm deletion" --text="this program will delete the shadercache folder from your steamdeck.\nif your steamdeck storage is mostly filled with the 'other' datatype in your storage setting, this will likely fix your problem." --no-wrap + then + rm -r /home/deck/.steam/steam/steamapps/shadercache + zenity --info --title="Success" --text="shadercache folder was sucessfully deleted" --no-wrap +fi