Skip to content

Commit

Permalink
Missing 3 &'s in order to write to Library and run the python
Browse files Browse the repository at this point in the history
~fixed shortcuts not adding to steam
  • Loading branch information
moraroy authored Jun 9, 2023
1 parent ce5b125 commit 6da7795
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions NonSteamLaunchers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 &



Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 6da7795

Please sign in to comment.