From afe884b9e4d5a98cd7e7e20b951ea14bd5c56137 Mon Sep 17 00:00:00 2001 From: nocode Date: Wed, 8 Jul 2026 03:21:36 +0200 Subject: [PATCH] feat(gameboot-windows): add games configuration for fws gameboot Add games.json configuration file with support for Riot client games (Valorant and League of Legends). This file defines launchable games with their process names and patchline information for fws-gameboot to-windows command. --- .../local/share/fws/gameboot-windows/games.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 configs/releng/airootfs/usr/local/share/fws/gameboot-windows/games.json diff --git a/configs/releng/airootfs/usr/local/share/fws/gameboot-windows/games.json b/configs/releng/airootfs/usr/local/share/fws/gameboot-windows/games.json new file mode 100644 index 0000000..5646526 --- /dev/null +++ b/configs/releng/airootfs/usr/local/share/fws/gameboot-windows/games.json @@ -0,0 +1,17 @@ +{ + "_comment": "Registre des jeux lançables par fws-play. Cle = identifiant (charte [a-z0-9_-]) passe a 'fws-gameboot to-windows --game '. 'process' = nom du processus a attendre (sans .exe). Types: 'riot' (Riot Client), 'uri' (steam://rungameid/NNN, com.epicgames.launcher://...), 'exe' (chemin direct, args = tableau). Les cles commencant par '_' sont ignorees. Pour ajouter un jeu, copie une entree ci-dessous.", + + "valorant": { + "type": "riot", + "product": "valorant", + "patchline": "live", + "process": "VALORANT-Win64-Shipping" + }, + + "lol": { + "type": "riot", + "product": "league_of_legends", + "patchline": "live", + "process": "League of Legends" + } +}