From 6da7795e15d27a328c9d59e2ced911a5074d5c2a Mon Sep 17 00:00:00 2001 From: Roy <88516395+moraroy@users.noreply.github.com> Date: Fri, 9 Jun 2023 03:10:32 -0700 Subject: [PATCH] Missing 3 &'s in order to write to Library and run the python ~fixed shortcuts not adding to steam --- NonSteamLaunchers.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NonSteamLaunchers.sh b/NonSteamLaunchers.sh index abb01b7..6827db2 100644 --- a/NonSteamLaunchers.sh +++ b/NonSteamLaunchers.sh @@ -7,7 +7,7 @@ chmod +x "$0" set -x -version=v2.89 +version=v2.90 check_for_updates() { # Set the URL to the GitHub API for the repository @@ -2523,11 +2523,11 @@ fi nohup sh -c 'sleep 10; /usr/bin/steam' & # Close all instances of Steam -killall steam +killall steam & # Wait for the steam process to exit -while pgrep steam > /dev/null; do sleep 1; done +while pgrep steam > /dev/null; do sleep 1; done & @@ -2705,7 +2705,7 @@ create_new_entry('$amazonshortcutdirectory', 'Amazon Games', '$amazonlaunchoptio create_new_entry('$itchioshortcutdirectory', 'itch.io', '$itchiolaunchoptions') create_new_entry('$legacyshortcutdirectory', 'Legacy Games', '$legacylaunchoptions') create_new_entry('$humbleshortcutdirectory', 'Humble Games Collection', '$humblelaunchoptions') -create_new_entry('$indieshortcutdirectory', 'IndieGala', '$indielaunchoptions') +create_new_entry('$indieshortcutdirectory', 'IndieGala Client', '$indielaunchoptions') create_new_entry('$rockstarshortcutdirectory', 'Rockstar Games Launcher', '$rockstarlaunchoptions') create_new_entry('$glyphshortcutdirectory', 'Glyph', '$glyphlaunchoptions') create_new_entry('$minecraftshortcutdirectory', 'Minecraft: Java Edition', '$minecraftlaunchoptions')