forgot to uncomment at the end of the script this whole time

This commit is contained in:
Roy 2024-02-09 03:37:41 -08:00 committed by GitHub
parent ca407a5980
commit 1f4e03436c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2739,32 +2739,31 @@ fi
# TODO: might be better to relocate temp files to `/tmp` or even use `mktemp -d` since `rm -rf` is potentially dangerous without the `-i` flag # TODO: might be better to relocate temp files to `/tmp` or even use `mktemp -d` since `rm -rf` is potentially dangerous without the `-i` flag
# Delete NonSteamLaunchersInstallation subfolder in Downloads folder # Delete NonSteamLaunchersInstallation subfolder in Downloads folder
#rm -rf "$download_dir" rm -rf "$download_dir"
#Setup NSLGameScanner.service #Setup NSLGameScanner.service
# Define your Python script path python_script_path="${logged_in_home}/.config/systemd/user/NSLGameScanner.py"
#python_script_path="${logged_in_home}/.config/systemd/user/NSLGameScanner.py"
# Define your GitHub link # Define your GitHub link
#github_link="https://raw.githubusercontent.com/moraroy/NonSteamLaunchers-On-Steam-Deck/main/NSLGameScanner.py" github_link="https://raw.githubusercontent.com/moraroy/NonSteamLaunchers-On-Steam-Deck/main/NSLGameScanner.py"
# Check if the service is already running # Check if the service is already running
#service_status=$(systemctl --user is-active nslgamescanner.service) service_status=$(systemctl --user is-active nslgamescanner.service)
#if [ "$service_status" = "active" ] || [ "$service_status" = "activating" ] if [ "$service_status" = "active" ] || [ "$service_status" = "activating" ]
#then then
#echo "Service is already running or activating. Stopping the service..." echo "Service is already running or activating. Stopping the service..."
#systemctl --user stop nslgamescanner.service systemctl --user stop nslgamescanner.service
#fi fi
#echo "Updating Python script from GitHub..." echo "Updating Python script from GitHub..."
# Download the Python script from GitHub
#curl -o $python_script_path $github_link curl -o $python_script_path $github_link
echo "Starting the service..."
#echo "Starting the service..."
# Call your Python script
python3 $python_script_path python3 $python_script_path