From 83b6ed8dfb9c2c44a9193478cdc82b3b4c058470 Mon Sep 17 00:00:00 2001 From: Ahmed Emad <122463699+Ahmed5Emad@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:42:25 +0300 Subject: [PATCH] fix(game-launcher): add ~/.local/share/Steam to steam roots for NixOS support (#159) * game-launcher: add launcher toggles, keyboard nav, auto-refresh * game-launcher: update README with runner toggle settings * fix: remove duplicate translation keys after upstream merge * fix(game-launcher): add ~/.local/share/Steam to steam roots for NixOS support * chore(game-launcher): bump version to 1.1.1 --------- Co-authored-by: Ahmed5Emad --- game-launcher/gamelauncher.c | 2 ++ game-launcher/plugin.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/game-launcher/gamelauncher.c b/game-launcher/gamelauncher.c index 4b416b7..3c0662e 100755 --- a/game-launcher/gamelauncher.c +++ b/game-launcher/gamelauncher.c @@ -262,6 +262,7 @@ void scan_steam() { const char *steam_roots[] = { "/Steam", "/.steam/steam", + "/.local/share/Steam", "/.var/app/com.valvesoftware.Steam/.local/share/Steam", NULL }; @@ -987,6 +988,7 @@ int cache_valid() { const char *steam_roots[] = { "/Steam", "/.steam/steam", + "/.local/share/Steam", "/.var/app/com.valvesoftware.Steam/.local/share/Steam", NULL }; for (int r = 0; steam_roots[r]; r++) { diff --git a/game-launcher/plugin.toml b/game-launcher/plugin.toml index f9ce718..2cac333 100644 --- a/game-launcher/plugin.toml +++ b/game-launcher/plugin.toml @@ -1,6 +1,6 @@ id = "alexander/game-launcher" name = "Game Launcher" -version = "1.1.0" +version = "1.1.1" plugin_api = 13 author = "Alexander" license = "MIT"