Dor dicke Gind
2 years ago
2 changed files with 37 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||||
|
<driconf> |
||||||
|
<device> |
||||||
|
<application name="Default"> |
||||||
|
<option name="vblank_mode" value="1" /> |
||||||
|
</application> |
||||||
|
</device> |
||||||
|
</driconf> |
@ -0,0 +1,30 @@ |
|||||||
|
#!/bin/bash |
||||||
|
export DXVK_LOG_LEVEL=none |
||||||
|
export DXVK_ASYNC=1 |
||||||
|
export RADV_PERFTEST=sam,rt |
||||||
|
export VKD3D_CONFIG=dxr11 |
||||||
|
#export VKD3D_FEATURE_LEVEL=12_2 |
||||||
|
export WINEDEBUG=-all |
||||||
|
export WINEDLLOVERRIDES=winedbg.exe=d |
||||||
|
export WINEFSYNC=1 |
||||||
|
|
||||||
|
command="gamescope -f -U -o 30 -w 1920 -h 1080 -- gamemoderun mangohud ENABLE_VKBASALT=1" |
||||||
|
if [[ "$@" == *"SteamLaunch"* ]]; then |
||||||
|
$command "$@" |
||||||
|
#xfce4-terminal -e "bash -c $command "$@";bash" |
||||||
|
exit 0 |
||||||
|
fi |
||||||
|
|
||||||
|
cd "$1" |
||||||
|
wine="wine" |
||||||
|
if [ "$3" ]; then |
||||||
|
wine="$3" |
||||||
|
fi |
||||||
|
|
||||||
|
if [ "$4" != "true" ]; then |
||||||
|
wine="$wine explorer /desktop=,1920x1080" |
||||||
|
fi |
||||||
|
|
||||||
|
command="$command $wine $2" |
||||||
|
#xfce4-terminal -e "bash -c \"$command\";bash" |
||||||
|
bash -c "$command" |
Loading…
Reference in new issue