diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2023-01-10 17:56:11 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-10 17:56:11 +0000 |
| commit | 1e308a3e80f604d1292a90a33bc1e6e46d4b7d5e (patch) | |
| tree | 87392d70246fc70657a3183aab3c1f3301e28475 | |
| parent | 6e8859f020f9493cf5bd57038aa4331839d4ce3c (diff) | |
| download | decky-installer-1e308a3e80f604d1292a90a33bc1e6e46d4b7d5e.tar.gz decky-installer-1e308a3e80f604d1292a90a33bc1e6e46d4b7d5e.zip | |
disable CEF debugging on uninstall
| -rw-r--r-- | user_install_script.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/user_install_script.sh b/user_install_script.sh index ab9dfa0..18ef7fe 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -61,17 +61,21 @@ fi # uninstall if uninstall option was selected if [ "$BRANCH" == "uninstall decky loader" ] ; then ( - echo "30" ; echo "# Disabling and removing services" ; + echo "20" ; echo "# Disabling and removing services" ; sudo systemctl disable --now plugin_loader.service > /dev/null sudo rm -f "${USER_DIR}/.config/systemd/user/plugin_loader.service" sudo rm -f "/etc/systemd/system/plugin_loader.service" - echo "60" ; echo "# Removing Temporary Files" ; + echo "40" ; echo "# Removing Temporary Files" ; rm -rf "/tmp/plugin_loader" rm -rf "/tmp/user_install_script.sh" - echo "90" ; echo "# Cleaning services folder" ; + echo "60" ; echo "# Cleaning services folder" ; sudo rm "${HOMEBREW_FOLDER}/services/PluginLoader" + + echo "80" ; echo "# Disabling CEF debugging" ; + sudo rm "${USER_DIR}/.steam/steam/.cef-enable-remote-debugging" + echo "100" ; echo "# Uninstall finished, installer can now be closed"; ) | zenity --progress \ |
