From 358aac9277dce563817c0d3cf7a020478275ecf9 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 4 Feb 2024 21:05:35 -0600 Subject: [PATCH] Modernize the default Steam shortcut With auto-detach and properly job tracking, we don't need to run Steam detached anymore. We can just use the plain URL now too. --- src_assets/windows/assets/apps.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src_assets/windows/assets/apps.json b/src_assets/windows/assets/apps.json index 72a56a7e..30b6ada0 100644 --- a/src_assets/windows/assets/apps.json +++ b/src_assets/windows/assets/apps.json @@ -1,7 +1,5 @@ { - "env": { - "PATH": "$(PATH);$(ProgramFiles(x86))\\Steam" - }, + "env": {}, "apps": [ { "name": "Desktop", @@ -9,9 +7,9 @@ }, { "name": "Steam Big Picture", - "detached": [ - "steam steam://open/bigpicture" - ], + "cmd": "steam://open/bigpicture", + "auto-detach": "true", + "wait-all": "true", "image-path": "steam.png" } ]