summarylogtreecommitdiffstats
path: root/winbox
blob: b03b498eda2d142e3a3e04ab84c0d5d62d76e6d9 (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/winbox/winbox.exe "$@"