From f75dbf490d939f5dd3b03dc87b29f81f3443a7b8 Mon Sep 17 00:00:00 2001 From: Roy <88516395+moraroy@users.noreply.github.com> Date: Mon, 24 Mar 2025 00:11:14 -0700 Subject: [PATCH] Add files via upload --- NonSteamLaunchers.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/NonSteamLaunchers.sh b/NonSteamLaunchers.sh index 7944ae0..5d505e8 100755 --- a/NonSteamLaunchers.sh +++ b/NonSteamLaunchers.sh @@ -1415,9 +1415,11 @@ if [[ " ${args[@]} " =~ " Stop NSLGameScanner " ]] || [[ $options == "Stop NSLGa if [ $? = 0 ]; then # User wants to run NSLGameScanner again python3 $python_script_path + show_message "NSLGameScanner is now restarting!" else # User does not want to run NSLGameScanner again stop_service + show_message "NSLGameScanner has been stopped and is no longer scanning for games!" exit 0 fi fi @@ -2821,4 +2823,15 @@ fi echo "Script completed successfully." +#!/bin/bash + +# Check if the symlink exists +if [ -L "${logged_in_home}/.config/systemd/user/default.target.wants/nslgamescanner.service" ]; then + # Symlink exists, show message + show_message "Script is done...and the NSLGamesScanner is actively scanning!" +else + # Symlink does not exist + echo "Symlink does not exist." +fi + exit 0