1 2 3 4 5 6 7 8 9 10 11
#!/bin/bash export WINEPREFIX="$HOME"/.winbox/wine export WINEARCH=win64 export WINEDLLOVERRIDES="mscoree=" # disable mono export WINEDEBUG=-all if [ ! -d "$HOME"/.winbox ] ; then mkdir -p "$HOME"/.winbox/wine wineboot -u fi wine /usr/share/winbox3/winbox.exe "$@"