mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
17 lines
245 B
Bash
Executable File
17 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -xeuo pipefail
|
|
|
|
gamescopeArgs=(
|
|
--adaptive-sync # VRR support
|
|
--hdr-enabled
|
|
--rt
|
|
--steam
|
|
)
|
|
|
|
steamArgs=(
|
|
-pipewire-dmabuf
|
|
-tenfoot
|
|
)
|
|
|
|
exec gamescope "${gamescopeArgs[@]}" -- steam "${steamArgs[@]}"
|