summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-28 00:03:09 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-28 00:03:09 -0500
commit709062d93cec154abed768a0dde1122bb4d79a6a (patch)
tree2b6bc8b1fd7f8eb9e992e02467c670b17b79627a
parent8abd54176330042af470e4f73aad302f405af86b (diff)
downloadDecky-Framegen-709062d93cec154abed768a0dde1122bb4d79a6a.tar.gz
Decky-Framegen-709062d93cec154abed768a0dde1122bb4d79a6a.zip
oversignt, add command prepend arg
-rwxr-xr-xsrc/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 84e6019..48dfc19 100755
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -271,7 +271,7 @@ function InstalledGamesSection() {
const handleUnpatchClick = async (game: { appid: number; name: string }) => {
setClickedGame(game);
try {
- await SteamClient.Apps.SetAppLaunchOptions(game.appid, '/home/deck/fgmod/fgmod-uninstaller.sh');
+ await SteamClient.Apps.SetAppLaunchOptions(game.appid, '/home/deck/fgmod/fgmod-uninstaller.sh %COMMAND%');
setResult(`DLSS mods will uninstall on next launch of ${game.name}. The game is now unpatched.`);
} catch (error) {
if (error instanceof Error) {