summarylogtreecommitdiffstats
path: root/winbox3
blob: 8a88b883e9b153b941ee01d44af2011bbc31da28 (plain)
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 "$@"