blob: d22c29fa68c0fabda3e070225f32c9fed5bfcc9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
wineserver -k
export LANG=ja_JP.UTF-8
export LC_ALL=ja_JP.UTF-8
export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win32
export WINEESYNC=1
export GAMESCOPE=gamescope
if command -v "gamescope-legacy"; then
export GAMESCOPE="gamescope-legacy"
fi
|