afe884b9e4
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.
18 lines
691 B
JSON
18 lines
691 B
JSON
{
|
|
"_comment": "Registre des jeux lançables par fws-play. Cle = identifiant (charte [a-z0-9_-]) passe a 'fws-gameboot to-windows --game <id>'. '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"
|
|
}
|
|
}
|