blob: 8aabcb3c8dda9eb168e803762240ed43787181cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
XDG_DATA_HOME="${XDG_DATA_HOME-${HOME}/.local/share}"
OSU_STABLE_DATA_DIRECTORY="${OSU_STABLE_DATA_DIRECTORY-${XDG_DATA_HOME}/osu-stable}"
export WINEDEBUG="${WINEDEBUG--all}"
export WINEPREFIX="${WINEPREFIX-${XDG_DATA_HOME}/wineprefixes/osu-stable}"
export WINEARCH='win32'
if [ ! -d "${WINEPREFIX}" ]; then
echo 'Setting up the Wine prefix...'
winetricks -q 'dotnet45' 'cjkfonts'
echo 'Completed setting up the Wine prefix.'
fi
if [ ! -d "${OSU_STABLE_DATA_DIRECTORY}" ]; then
echo 'Installing osu!stable...'
mkdir -p "${OSU_STABLE_DATA_DIRECTORY}"
cp '/usr/share/osu/osu-stable-installer.exe' "${OSU_STABLE_DATA_DIRECTORY}"
wine "${OSU_STABLE_DATA_DIRECTORY}/osu-stable-installer.exe"
wineserver -w
echo 'Completed installing osu!stable.'
exit
fi
case "$1" in
'kill')
wineserver -k "$2"
;;
'winetricks')
shift 1
winetricks "$@"
;;
'wine')
shift 1
wine "$@"
;;
'-h'|'--help'|'help')
echo 'Usage:'
printf '%s [command]\t\t\tRun the game (with optional command)\n' "$(basename "$0")"
printf '%s kill [n]\t\t\tKill the game (optinally with signal n)\n' "$(basename "$0")"
printf '%s wine [command]\t\tExecute Wine command on the Wine prefix (winecfg, regedit, ...)\n' "$(basename "$0")"
printf '%s winetricks [command]\t\tExecute Winetricks command on the Wine prefix\n' "$(basename "$0")"
printf '%s {-h --help help}\t\tDisplay this help\n' "$(basename "$0")"
;;
*)
env vblank_mode="${vblank_mode-0}" __GL_SYNC_TO_VBLANK="${__GL_SYNC_TO_VBLANK-0}" \
wine "${OSU_STABLE_DATA_DIRECTORY}"'/osu!.exe' "$@"
wineserver -w
;;
esac
|