Created
July 22, 2022 17:06
-
-
Save GithubUser5462/c743e24e985d454cb9af04edb5d48ac9 to your computer and use it in GitHub Desktop.
Waydroid cleanup after uninstall - remove leftover app shortcuts from launcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://docs.waydro.id/usage/install-on-desktops#reinstalling-waydroid | |
# chmod a+x waydroid_cleanup.sh; sudo waydroid_cleanup.sh; | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root" | |
exit | |
fi | |
rm -rf "$HOME/waydroid"; | |
rm -rf "$HOME/.share/waydroid"; | |
rm -rf "$HOME/.local/share/waydroid"; | |
rm -fi "$HOME/.local/share/applications/"*"aydroid"* ; | |
rm -rf "/var/lib/waydroid"; | |
rm -rf "/home/.waydroid"; | |
echo Done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment