blob: 8b001aa50a0b8d6bc5b79621937005933582ebfa (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
export WINEPREFIX="$HOME"/.lcn-pro/wine
if [ ! -d "$HOME"/.lcn-pro ]; then
mkdir -p "$HOME"/.lcn-pro/wine
wineboot -u
fi
WINEDEBUG=-all wine /usr/share/lcn-pro/LCNPRO.exe "$@"
|