From c2c2be122afe6b6caea4f01d09037c7281b3fee1 Mon Sep 17 00:00:00 2001 From: Gavin Nugent Date: Sun, 23 Nov 2025 19:12:16 +0000 Subject: [PATCH] Configuration --- Configuration | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Configuration diff --git a/Configuration b/Configuration new file mode 100644 index 0000000..bfb92d5 --- /dev/null +++ b/Configuration @@ -0,0 +1,22 @@ +The script reads a config file from: + 1. ~/.gaming-mode.conf (user override), or + 2. /etc/gaming-mode.conf (system-wide default) + +Available options + +# How Steam launches: +# bigpicture → steam -tenfoot (default) +# gamepadui → steam -gamepadui +STEAM_LAUNCH_MODE=bigpicture + +# Performance tweaks: +# enabled → enable gamescope low-latency flags and perf tweaks +# disabled → run in a more conservative mode +PERFORMANCE_MODE=enabled + +You can create the file manually or copy from an example: + +sudo cp docs/gaming-mode.conf.example /etc/gaming-mode.conf +sudo $EDITOR /etc/gaming-mode.conf + +(User-specific overrides should go in ~/.gaming-mode.conf.)