summarylogtreecommitdiffstats
path: root/thedude
blob: 775f60a128188ffb227d356bff58cdf532dbd16c (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/thedude/dude.exe "$@"