summarylogtreecommitdiffstats
path: root/th10-custom.sh
blob: dd262443df66b3e0dfd83d363d4a4c261424ec5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

NAME='th10'
SRC="/usr/share/$NAME"
DEST="$HOME/.$NAME"

export WINEPREFIX="$DEST/wine"
export WINEDLLOVERRIDES='mscoree,mshtml='
export WINEARCH='win32'
export LANG='ja_JP.UTF-8'

if [ -e "$DEST/custom.exe" ]; then
	cd "$DEST"
	wine custom.exe
else
	echo No custom.exe found
fi