blob: 4c8748782eb8fe2bb8b27fb9736b5f39bac4450a (
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
|
#! /usr/bin/env sh
# https://gist.github.com/Kron4ek/af1bbc1353302751a0941308294ec24a
export STEAM_COMPAT_LAUNCHER_SERVICE=proton
export PROTON_USE_NTSYNC=1
export PROTON_ENABLE_WAYLAND=1
export PROTON_WAYLAND_MONITOR=$MAIN_MONITOR
export DXVK_HUD=compiler
export DXVK_LOG_LEVEL=none
export DXVK_DEBUG=none
export VKD3D_DEBUG=none
export VKD3D_SHADER_DEBUG=none
unset SDL_VIDEODRIVER
unset SDL_VIDEO_DRIVER
if [[ ! -z $DISPLAY_MODE_60HZ ]]; then
swaymsg "output $MAIN_MONITOR mode 2560x1440@60.000Hz"
fi
xrandr --output $MAIN_MONITOR --primary
scxctl start --sched lavd --mode gaming
if [[ $MANGOHUD == 1 || -z $MANGOHUD ]]; then
env LD_PRELOAD="$LD_PRELOAD:/usr/lib64/libgamemodeauto.so" mangohud "$@"
else
env LD_PRELOAD="$LD_PRELOAD:/usr/lib64/libgamemodeauto.so" "$@"
fi
scxctl stop
if [[ ! -z $DISPLAY_MODE_60HZ ]]; then
swaymsg "output $MAIN_MONITOR mode 2560x1440@144.000Hz"
fi
|