11 lines
191 B
Text
11 lines
191 B
Text
|
#!/bin/sh
|
||
|
|
||
|
export WINEPREFIX="$(pwd)/wine"
|
||
|
export WINEARCH=win64
|
||
|
export WINEESYNC=1
|
||
|
|
||
|
export GAMESCOPE=gamescope
|
||
|
if command -v "gamescope-legacy"; then
|
||
|
export GAMESCOPE="gamescope-legacy"
|
||
|
fi
|