Wine: 2 more menu shortcuts

pull/576/head
Botspot 4 years ago
parent 20fc7175b1
commit bbc0e66ce7

@ -181,7 +181,7 @@ echo "[Desktop Entry]
StartupNotify=true
Terminal=false
Type=Application
Name=Wine configuration
Name=Wine Configuration
Exec=wine winecfg
Icon=$(dirname "$0")/icon-64.png
Categories=System;
@ -194,25 +194,44 @@ Exec=bash -c 'BOX86_NOBANNER=1 box86 winetricks --gui'
Terminal=false
Icon=$(dirname "$0")/icon-64.png
Type=Application
Categories=System;" > ~/.local/share/applications/winetricks.desktop
Categories=System;" > ~/.local/share/applications/wine-tricks.desktop
echo "[Desktop Entry]
Version=1.0
Type=Application
Name=Wine Desktop
Comment=Graphical desktop for Wine
Comment=Wine graphical desktop environment to mimic a Windows OS
Icon=$(dirname "$0")/icon-64.png
Exec=/usr/local/bin/wine explorer /desktop=shell,1280x720 explorer.exe
Exec=wine explorer /desktop=shell,1280x720
Terminal=false
Categories=System;" > ~/.local/share/applications/wine-explorer.desktop
echo "[Desktop Entry]
Version=1.0
Type=Application
Name=Wine Program Manager
Comment=Install/Remove Windows programs
Icon=$(dirname "$0")/icon-64.png
Exec=wine uninstaller
Terminal=false
Categories=System;" > ~/.local/share/applications/wine-uninstaller.desktop
echo "[Desktop Entry]
Version=1.0
Type=Application
Name=Wine Task Manager
Comment=View running processes within Wine
Icon=$(dirname "$0")/icon-64.png
Exec=wine taskmgr
Terminal=false
Categories=System;" > ~/.local/share/applications/wine-taskmgr.desktop
# Boot wine (make fresh wineprefix in ~/.wine
BOX86_NOBANNER=1
setarch linux32 -L box86 ~/wine/bin/wine wineboot
#wait until above process exits
while [ ! -z "$(ps aux | grep -i 'wine C:' | grep -v grep)" ];do
while [ ! -z "$(pgrep -i 'wine C:')" ];do
sleep 1
done
echo "First wineboot finished. Now updating wine prefix..."

@ -13,11 +13,9 @@ function error {
sudo rm -f /usr/local/bin/wine /usr/local/bin/winecfg /usr/local/bin/wineserver /usr/local/bin/wineboot
rm -rf ~/wine ~/.cache/winetricks ~/.cache/wine
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!'
rm -f ~/.local/share/applications/wine-*.desktop || error 'Failed to remove wine menu shortcuts!'
echo -e "\e[93mYou just uninstalled the Wine app, but it's not completely gone yet.
To prevent accidental data loss, your Wine configuration is still located in the $HOME/.wine folder. Feel free to delete it to save space or to troubleshoot problems.
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"
Thanks for reading! -Botspot\e[39m\n"

Loading…
Cancel
Save