37 lines
1.3 KiB
Bash
37 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
version=8.14
|
|
|
|
pkill -9 wine
|
|
command -v wineserver >/dev/null && wineserver -k
|
|
|
|
status -n "Removing terminal commands... "
|
|
sudo rm -rf /usr/local/bin/wine /usr/local/bin/winecfg /usr/local/bin/wineserver /usr/local/bin/wineboot /usr/local/bin/winetricks /usr/local/bin/generate-wine-prefix
|
|
status_green "Done"
|
|
|
|
status -n "Removing Wine folders... "
|
|
sudo rm -rf /opt/wine-${version}
|
|
rm -rf ~/.cache/winetricks ~/.cache/wine
|
|
status_green "Done"
|
|
|
|
status -n "Removing menu shortcuts... "
|
|
sudo rm -rf /usr/share/applications/wine-*.desktop || error 'Failed to remove wine menu shortcuts!'
|
|
status_green "Done"
|
|
|
|
status -n "Removing mimetypes... "
|
|
#See: https://askubuntu.com/a/400430
|
|
rm -f ~/.local/share/mime/packages/x-wine*
|
|
rm -f ~/.local/share/applications/wine-extension*
|
|
rm -f ~/.local/share/icons/hicolor/*/*/application-x-wine-extension*
|
|
rm -f ~/.local/share/mime/application/x-wine-extension*
|
|
status_green "Done"
|
|
|
|
purge_packages || exit 1
|
|
|
|
if [ -e "$HOME/.wine" ];then
|
|
echo -e "\n\n\e[93mYou just uninstalled the Wine app, but it's not completely gone yet.
|
|
To prevent data loss, your Wine configuration is still\nlocated in the $HOME/.wine folder. Feel free to delete it to save space or to rename the folder for troubleshooting.
|
|
Thanks for reading! -Botspot\e[39m\n"
|
|
fi
|
|
true
|