-
Notifications
You must be signed in to change notification settings - Fork 41
Description
This might sound a little silly, but I'd like to have a option to launch the default launcher for the game.
syntax could be something like... protontricks-launch --appid 208200 --game-launcher
My main usage is to launch games through gamescope without having to configure them in steam.
Currently I'm having my script search for the launcher exe from common names, then just by whatever .exe comes first.
GameID=208200; GameFolder=$(protontricks -cwd-app -c "echo \"\$STEAM_APP_PATH\"" $GameID 2>/dev/null | tail -1); GameLauncher=$(find "$GameFolder" -type f -name "*.exe" | head -1); scb -- protontricks-launch --appid $GameID --cwd "$GameLauncher"
Not exactly the most elegant. (also won't work with games that need special arguments to launch)
This would also allow custom protrontricks settings be enforced for the standard launcher.