From 5ffc979397418bae5752c8826eb8120753545ec0 Mon Sep 17 00:00:00 2001 From: Itai Nelken <70802936+Itai-Nelken@users.noreply.github.com> Date: Wed, 3 Feb 2021 21:45:42 +0200 Subject: [PATCH] wine uninstall script removes all desktop shortcuts --- apps/Wine (x86)/uninstall | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/Wine (x86)/uninstall b/apps/Wine (x86)/uninstall index 7425400..213bd86 100755 --- a/apps/Wine (x86)/uninstall +++ b/apps/Wine (x86)/uninstall @@ -13,7 +13,9 @@ sudo rm /usr/local/bin/winecfg sudo rm /usr/local/bin/wineserver rm -rf ~/wine -rm ~/.local/share/applications/winecfg.desktop || error 'Failed to remove winecfg menu shortcut' +rm ~/.local/share/applications/wine-config.desktop || error 'Failed to remove winecfg menu shortcut!' +rm ~/.local/share/applications/winetricks.desktop || error 'Failed to remove winetricks menu shortcut!' +rm ~/.local/share/applications/wine-explorer.desktop || error 'Failed to remove wine desktop menu shortcut!' #if your app installs any packages, keep this command here so those packages will be removed. "${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1