From 744eb4ddfe75f8e826a342b4a07c58b9cf221801 Mon Sep 17 00:00:00 2001 From: sysmoon14 <61550824+sysmoon14@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:19:02 +0000 Subject: [PATCH] Add files via upload --- NSLGameScanner.py | 406 +++++++++++++++++++++++++++++++-------- NonSteamLaunchers.sh | 441 +++---------------------------------------- 2 files changed, 354 insertions(+), 493 deletions(-) diff --git a/NSLGameScanner.py b/NSLGameScanner.py index 98e8db4..bea30ce 100644 --- a/NSLGameScanner.py +++ b/NSLGameScanner.py @@ -28,13 +28,16 @@ with open(env_vars_path, 'r') as f: for line in lines: if line.startswith('export '): line = line[7:] # Remove 'export ' - name, value = line.strip().split('=') + name, value = line.strip().split('=', 1) os.environ[name] = value # Variables from NonSteamLaunchers.sh steamid3 = os.environ['steamid3'] logged_in_home = os.environ['logged_in_home'] compat_tool_name = os.environ['compat_tool_name'] +controller_config_path = os.environ['controller_config_path'] +python_version = os.environ['python_version'] +#Scanner Variables epic_games_launcher = os.environ.get('epic_games_launcher', '') ubisoft_connect_launcher = os.environ.get('ubisoft_connect_launcher', '') ea_app_launcher = os.environ.get('ea_app_launcher', '') @@ -42,6 +45,31 @@ gog_galaxy_launcher = os.environ.get('gog_galaxy_launcher', '') bnet_launcher = os.environ.get('bnet_launcher', '') amazon_launcher = os.environ.get('amazon_launcher', '') + +#Variables of the Launchers +# Define the path of the Launchers +epicshortcutdirectory = os.environ.get('epicshortcutdirectory') +gogshortcutdirectory = os.environ.get('gogshortcutdirectory') +uplayshortcutdirectory = os.environ.get('uplayshortcutdirectory') +battlenetshortcutdirectory = os.environ.get('battlenetshortcutdirectory') +eaappshortcutdirectory = os.environ.get('eaappshortcutdirectory') +amazonshortcutdirectory = os.environ.get('amazonshortcutdirectory') +itchioshortcutdirectory = os.environ.get('itchioshortcutdirectory') +legacyshortcutdirectory = os.environ.get('legacyshortcutdirectory') +humbleshortcutdirectory = os.environ.get('humbleshortcutdirectory') +indieshortcutdirectory = os.environ.get('indieshortcutdirectory') +rockstarshortcutdirectory = os.environ.get('rockstarshortcutdirectory') +glyphshortcutdirectory = os.environ.get('glyphshortcutdirectory') +minecraftshortcutdirectory = os.environ.get('minecraftshortcutdirectory') +psplusshortcutdirectory = os.environ.get('psplusshortcutdirectory') +vkplayhortcutdirectory = os.environ.get('vkplayhortcutdirectory') +#Streaming +chromedirectory = os.environ.get('chromedirectory') +websites_str = os.environ.get('custom_websites_str') +custom_websites = websites_str.split(', ') if websites_str else [] + + + # Define the parent folder parent_folder = f"{logged_in_home}/.config/systemd/user/Modules" @@ -263,88 +291,224 @@ def check_if_shortcut_exists(shortcut_id, display_name, exe_path, start_dir, lau #End of Code -#Finding the Launchers and applying artwork to already made shortcuts from NonSteamLaunchers.sh -# List of game launchers to look for -game_launchers = { - 'Epic Games', - 'Gog Galaxy', - 'Ubisoft Connect', - 'Battle.net', - 'EA App', - 'Amazon Games', - 'itch.io', - 'Legacy Games', - 'Humble Bundle', - 'Glyph', - 'IndieGala Client', - 'Rockstar Games Launcher', - 'Minecraft: Java Edition', - 'Playstation Plus', - 'DMM Games', - 'VK Play' + + +#Start of Refactoring code from the .sh file +sys.path.insert(0, os.path.expanduser(f"{logged_in_home}/Downloads/NonSteamLaunchersInstallation/lib/python{python_version}/site-packages")) +print(sys.path) + + +# Create an empty dictionary to store the app IDs +app_ids = {} +#Create Launcher Shortcuts +def create_new_entry(shortcutdirectory, appname, launchoptions, startingdir): + print(f"Creating new entry for {appname}...") + print(f"Shortcut directory: {shortcutdirectory}") + print(f"Launch options: {launchoptions}") + print(f"Starting directory: {startingdir}") + # Check if the launcher is installed + if not shortcutdirectory: + print(f"{appname} is not installed. Skipping.") + return + # Check if the game already exists in the shortcuts + exe_path = f"\"{shortcutdirectory}\"" + signed_shortcut_id = get_steam_shortcut_id(exe_path, appname) + print(f"Signed shortcut ID for {appname}: {signed_shortcut_id}") + # Only store the app ID for specific launchers + if appname in ['Epic Games', 'Gog Galaxy', 'Ubisoft Connect', 'Battle.net', 'EA App', 'Amazon Games', 'itch.io', 'Legacy Games', 'Humble Bundle', 'IndieGala Client', 'Rockstar Games Launcher', 'Glyph', 'Minecraft: Java Edition', 'Playstation Plus', 'VK Play']: + app_ids[appname] = signed_shortcut_id + print(f"Stored app ID for {appname}: {signed_shortcut_id}") + unsigned_shortcut_id = get_unsigned_shortcut_id(signed_shortcut_id) + print(f"Unsigned shortcut ID for {appname}: {unsigned_shortcut_id}") + if check_if_shortcut_exists(signed_shortcut_id, appname, exe_path, startingdir, launchoptions): + print(f"Shortcut already exists for {appname}.") + if add_compat_tool(unsigned_shortcut_id): + print(f"Added compatibility tool for {appname}.") + shortcuts_updated = True + return + + # Create a new entry for the Steam shortcut + game_id = get_game_id(appname) + print(f"Game ID for {appname}: {game_id}") + new_entry = { + 'appid': str(signed_shortcut_id), + 'appname': appname, + 'exe': exe_path, + 'StartDir': startingdir, + 'icon': f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/grid/{get_file_name('icons', unsigned_shortcut_id)}", + 'LaunchOptions': launchoptions, + 'GameID': game_id if game_id is not None else "default_game_id" + } + + # Add the new entry to the shortcuts dictionary + shortcuts['shortcuts'][str(signed_shortcut_id)] = new_entry + print(f"Added new entry for {appname} to shortcuts.") + new_shortcuts_added = True + if game_id is not None: + get_sgdb_art(game_id, unsigned_shortcut_id) + add_compat_tool(unsigned_shortcut_id) + + + + + + +create_new_entry(os.environ.get('epicshortcutdirectory'), 'Epic Games', os.environ.get('epiclaunchoptions'), os.environ.get('epicstartingdir')) +create_new_entry(os.environ.get('gogshortcutdirectory'), 'Gog Galaxy', os.environ.get('goglaunchoptions'), os.environ.get('gogstartingdir')) +create_new_entry(os.environ.get('uplayshortcutdirectory'), 'Ubisoft Connect', os.environ.get('uplaylaunchoptions'), os.environ.get('uplaystartingdir')) +create_new_entry(os.environ.get('battlenetshortcutdirectory'), 'Battle.net', os.environ.get('battlenetlaunchoptions'), os.environ.get('battlenetstartingdir')) +create_new_entry(os.environ.get('eaappshortcutdirectory'), 'EA App', os.environ.get('eaapplaunchoptions'), os.environ.get('eaappstartingdir')) +create_new_entry(os.environ.get('amazonshortcutdirectory'), 'Amazon Games', os.environ.get('amazonlaunchoptions'), os.environ.get('amazonstartingdir')) +create_new_entry(os.environ.get('itchioshortcutdirectory'), 'itch.io', os.environ.get('itchiolaunchoptions'), os.environ.get('itchiostartingdir')) +create_new_entry(os.environ.get('legacyshortcutdirectory'), 'Legacy Games', os.environ.get('legacylaunchoptions'), os.environ.get('legacystartingdir')) +create_new_entry(os.environ.get('humbleshortcutdirectory'), 'Humble Bundle', os.environ.get('humblelaunchoptions'), os.environ.get('humblestartingdir')) +create_new_entry(os.environ.get('indieshortcutdirectory'), 'IndieGala Client', os.environ.get('indielaunchoptions'), os.environ.get('indiestartingdir')) +create_new_entry(os.environ.get('rockstarshortcutdirectory'), 'Rockstar Games Launcher', os.environ.get('rockstarlaunchoptions'), os.environ.get('rockstarstartingdir')) +create_new_entry(os.environ.get('glyphshortcutdirectory'), 'Glyph', os.environ.get('glyphlaunchoptions'), os.environ.get('glyphstartingdir')) +create_new_entry(os.environ.get('minecraftshortcutdirectory'), 'Minecraft: Java Edition', os.environ.get('minecraftlaunchoptions'), os.environ.get('minecraftstartingdir')) +create_new_entry(os.environ.get('psplusshortcutdirectory'), 'Playstation Plus', os.environ.get('pspluslaunchoptions'), os.environ.get('psplusstartingdir')) +create_new_entry(os.environ.get('vkplayhortcutdirectory'), 'VK Play', os.environ.get('vkplaylaunchoptions'), os.environ.get('vkplaystartingdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Xbox Game Pass', os.environ.get('xboxchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'GeForce Now', os.environ.get('geforcechromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Netflix', os.environ.get('netlfixchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Hulu', os.environ.get('huluchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Disney+', os.environ.get('disneychromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Amazon Prime Video', os.environ.get('amazonchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Youtube', os.environ.get('youtubechromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Amazon Luna', os.environ.get('lunachromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Twitch', os.environ.get('twitchchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'movie-web', os.environ.get('moviewebchromelaunchoptions'), os.environ.get('chrome_startdir')) + + + +# Iterate over each custom website +for custom_website in custom_websites: + # Check if the custom website is not an empty string + if custom_website: + # Remove any leading or trailing spaces from the custom website URL + custom_website = custom_website.strip() + + # Remove the 'http://' or 'https://' prefix and the 'www.' prefix, if present + clean_website = custom_website.replace('http://', '').replace('https://', '').replace('www.', '') + + # Define a regular expression pattern to extract the game name from the URL + pattern = r'/games/([\w-]+)' + + # Use the regular expression to search for the game name in the custom website URL + match = re.search(pattern, custom_website) + + # Check if a match was found + if match: + # Extract the game name from the match object + game_name = match.group(1) + + # Replace hyphens with spaces + game_name = game_name.replace('-', ' ') + + # Capitalize the first letter of each word in the game name + game_name = game_name.title() + else: + # Use the entire URL as the entry name + game_name = clean_website + + # Define the launch options for this website + chromelaunch_options = f'run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1280,800 --force-device-scale-factor=1.00 --device-scale-factor=1.00 --kiosk https://{clean_website}/ --chrome-kiosk-type=fullscreen --no-first-run --enable-features=OverlayScrollbar' + + # Call the create_new_entry function for this website + create_new_entry(os.environ['chromedirectory'], game_name, chromelaunch_options, os.environ['chrome_startdir']) + +#End of Creating Launcher Shortcuts + + + + + + + +# Iterate over each launcher in the app_ids dictionary +for launcher_name, appid in app_ids.items(): + print(f"The app ID for {launcher_name} is {appid}") + + + +# Get the app ID for the first launcher that the user chose to instally +appid = app_ids.get(launcher_name) + +#Create User Friendly Symlinks for the launchers +# Define the path to the compatdata directory +compatdata_dir = f'{logged_in_home}/.local/share/Steam/steamapps/compatdata' + +# Define a dictionary of original folder names +folder_names = { + 'Epic Games': 'EpicGamesLauncher', + 'Gog Galaxy': 'GogGalaxyLauncher', + 'Ubisoft Connect': 'UplayLauncher', + 'Battle.net': 'Battle.netLauncher', + 'EA App': 'TheEAappLauncher', + 'Amazon Games': 'AmazonGamesLauncher', + 'itch.io': 'itchioLauncher', + 'Legacy Games': 'LegacyGamesLauncher', + 'Humble Bundle': 'HumbleGamesLauncher', + 'IndieGala Client': 'IndieGalaLauncher', + 'Rockstar Games Launcher': 'RockstarGamesLauncher', + 'Minecraft: Java Edition': 'MinecraftLauncher', + 'Playstation Plus': 'PlaystationPlusLauncher', + 'VK Play': 'VKPlayLauncher', } -#Chrome Based "Launchers" -chrome_launchers = { - 'Hulu', - 'Twitch', - 'Amazon Luna', - 'Youtube', - 'Amazon Prime Video', - 'Disney+', - 'Netflix', - 'GeForce Now', - 'Xbox Game Pass', - 'movie-web' -} +# Iterate over each launcher in the folder_names dictionary +for launcher_name, folder in folder_names.items(): + # Define the current path of the folder + current_path = os.path.join(compatdata_dir, folder) -# Mapping between shortcut names and SteamGridDB names -name_mapping = { - 'Epic Games': 'Epic Games Store (Program)', - 'Gog Galaxy': 'GOG Galaxy (Program)', - 'Ubisoft Connect': 'Ubisoft Connect (Program)', - 'Battle.net': 'Battle.net (Program)', - 'Legacy Games': 'Legacy Games (Program)', - 'Humble Bundle': 'Humble Bundle (Website)', - 'VK Play': 'VK Play (Website)', - 'Disney+': 'Disney+ (Website)' - # Add more mappings as needed -} + # Check if the folder exists + if os.path.exists(current_path): + print(f'{launcher_name}: {folder} exists') + # Get the app ID for this launcher from the app_id_to_name dictionary + appid = app_ids.get(launcher_name) -# Iterate over the shortcuts -for shortcut in shortcuts['shortcuts'].values(): - # Check if the shortcut is a game launcher - app_name = shortcut.get('appname') - if app_name in game_launchers: - print(f"Found game launcher: {app_name}") - # Use the actual app ID instead of generating one - app_id = shortcut.get('appid') - display_name = shortcut.get('appname') - exe_path = shortcut.get('exe') - signed_shortcut_id = get_steam_shortcut_id(exe_path, display_name) - unsigned_shortcut_id = get_unsigned_shortcut_id(signed_shortcut_id) - print(f"App ID for {app_name}: {app_id}") - # Check if the shortcut doesn't have artwork - artwork_path = f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/grid/{unsigned_shortcut_id}.png" - if not os.path.exists(artwork_path): - print(f"No artwork found for {app_name}, downloading...") - # Get the game ID from SteamGridDB - steamgriddb_name = name_mapping.get(app_name, app_name) - game_id = get_game_id(steamgriddb_name) - if game_id is not None: - print(f"Got game ID from SteamGridDB: {game_id}") - # Download and apply artwork - get_sgdb_art(game_id, unsigned_shortcut_id) - new_shortcuts_added = True - # Only add compat tool if not a chrome launcher - if app_name not in chrome_launchers: - if add_compat_tool(unsigned_shortcut_id): - shortcuts_updated = True + # Define the new path of the folder + new_path = os.path.join(compatdata_dir, str(appid)) + + # Rename the folder + os.rename(current_path, new_path) + + # Define the path of the symbolic link + symlink_path = os.path.join(compatdata_dir, folder) + + # Create a symbolic link to the renamed folder + os.symlink(new_path, symlink_path) + else: + print(f'{launcher_name}: {folder} does not exist') +# Check if the NonSteamLaunchers folder exists +if os.path.exists(os.path.join(compatdata_dir, 'NonSteamLaunchers')): + # Get the first app ID from the app_ids list + first_app_id = next(iter(app_ids.values())) + + # Define the current path of the NonSteamLaunchers folder + current_path = os.path.join(compatdata_dir, 'NonSteamLaunchers') + + # Check if NonSteamLaunchers is already a symbolic link + if os.path.islink(current_path): + print('NonSteamLaunchers is already a symbolic link') + else: + # Define the new path of the NonSteamLaunchers folder + new_path = os.path.join(compatdata_dir, str(first_app_id)) + + # Move the NonSteamLaunchers folder to the new path + shutil.move(current_path, new_path) + + # Define the path of the symbolic link + symlink_path = os.path.join(compatdata_dir, 'NonSteamLaunchers') + + # Create a symbolic link to the renamed NonSteamLaunchers folder + os.symlink(new_path, symlink_path) + +#End of Refactoring python code from .sh file -# End of finding the Launchers and applying artwork to already made shortcuts from NonSteamLaunchers.sh # Print the existing shortcuts @@ -356,7 +520,7 @@ for shortcut in shortcuts['shortcuts'].values(): - +#Scanners # Epic Games Scanner item_dir = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{epic_games_launcher}/pfx/drive_c/ProgramData/Epic/EpicGamesLauncher/Data/Manifests/" dat_file_path = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{epic_games_launcher}/pfx/drive_c/ProgramData/Epic/UnrealEngineLauncher/LauncherInstalled.dat" @@ -884,14 +1048,14 @@ if new_shortcuts_added or shortcuts_updated: file.write(conf) with open(f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/shortcuts.vdf", 'wb') as file: file.write(vdf.binary_dumps(shortcuts)) - + # Print the created shortcuts if created_shortcuts: print("Created Shortcuts:") for name in created_shortcuts: print(name) - # Assuming 'games' is a list of game dictionaries +# Assuming 'games' is a list of game dictionaries games = [shortcut for shortcut in shortcuts['shortcuts'].values()] for game in games: @@ -915,3 +1079,89 @@ if new_shortcuts_added or shortcuts_updated: print("All finished!") +# Load the configset_controller_neptune.vdf file +with open(controller_config_path, 'r') as f: + config = vdf.load(f) +#Setting Controller Layouts +# Add new entries for the games +for app_id in app_ids: + config['controller_config'][str(app_id)] = { + 'workshop': 'workshop_id' + } + +# Add new entries for the installed launchers and games +config['controller_config']['epic games'] = { + 'workshop': '2800178806' +} +config['controller_config']['gog galaxy'] = { + 'workshop': '2877189386' +} +config['controller_config']['ubisoft connect'] = { + 'workshop': '2804140248' +} +config['controller_config']['amazon games'] = { + 'workshop': '2871935783' +} +config['controller_config']['battlenet'] = { + 'workshop': '2887894308' +} +config['controller_config']['rockstar games launcher'] = { + 'workshop': '1892570391' +} +config['controller_config']['indiegala'] = { + 'template': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['legacy games'] = { + 'template': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['ea app'] = { + 'workshop': '2899822740' +} +config['controller_config']['itchio'] = { + 'workshop': '2845891813' +} +config['controller_config']['humble games collection'] = { + 'workshop': '2883791560' +} +config['controller_config']['minecraft java edition'] = { + 'workshop': '2980553929' +} +config['controller_config']['playstation plus'] = { + 'workshop': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['glyph'] = { + 'template': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['vk play'] = { + 'workshop': '3202642880' +} +config['controller_config']['amazon prime video'] = { + 'workshop': '2970669392' +} +config['controller_config']['hulu'] = { + 'workshop': '2970669392' +} +config['controller_config']['netflix'] = { + 'workshop': '2970669392' +} +config['controller_config']['disney+'] = { + 'workshop': '2970669392' +} +config['controller_config']['youtube'] = { + 'workshop': '2970669392' +} +config['controller_config']['geforce now'] = { + 'template': 'controller_neptune_gamepad+mouse.vdf' +} +config['controller_config']['amazon luna'] = { + 'template': 'controller_neptune_gamepad+mouse.vdf' +} +config['controller_config']['twitch'] = { + 'workshop': '2875543745' +} +config['controller_config']['movie-web'] = { + 'workshop': 'controller_neptune_webbrowser.vdf' +} +#End of Setting Controller Layouts +with open(controller_config_path, 'w') as f: + vdf.dump(config, f) diff --git a/NonSteamLaunchers.sh b/NonSteamLaunchers.sh index 55a2bf2..687599a 100755 --- a/NonSteamLaunchers.sh +++ b/NonSteamLaunchers.sh @@ -141,12 +141,12 @@ if [ "$decky_plugin" = true ]; then if [ -f "$env_vars" ]; then # If the env_vars file exists, run the .py file and continue with the script echo "Decky Plugin argument set and env_vars file found. Running the .py file..." - PIPE_PATH="/tmp/NSLGameScanner_pipe" + PIPE_PATH="/tmp/NSLGameScanner_pipe" if [[ ! -p $PIPE_PATH ]]; then mkfifo $PIPE_PATH fi - + python3 $python_script_path > $PIPE_PATH echo "Python script ran. Continuing with the script..." else @@ -1181,10 +1181,6 @@ if [[ " ${args[@]} " =~ " Stop NSLGameScanner " ]] || [[ $options == "Stop NSLGa fi - - - - # TODO: probably better to break this subshell into a function that can then be redirected to zenity # Massive subshell pipes into `zenity --progress` around L2320 for GUI rendering ( @@ -2187,6 +2183,9 @@ if [[ -f "$epic_games_launcher_path1" ]]; then epicshortcutdirectory="\"$epic_games_launcher_path1\" -opengl" epiclaunchoptions="STEAM_COMPAT_DATA_PATH=\"${logged_in_home}/.local/share/Steam/steamapps/compatdata/NonSteamLaunchers/\" %command%" epicstartingdir="\"$(dirname "$epic_games_launcher_path1")\"" + echo "export epicshortcutdirectory=$epicshortcutdirectory" >> ${logged_in_home}/.config/systemd/user/env_vars + echo "export epiclaunchoptions=$epiclaunchoptions" >> ${logged_in_home}/.config/systemd/user/env_vars + echo "export epicstartingdir=$epicstartingdir" >> ${logged_in_home}/.config/systemd/user/env_vars echo "export epic_games_launcher=NonSteamLaunchers" >> ${logged_in_home}/.config/systemd/user/env_vars echo "Epic Games Launcher found at path 1" elif [[ -f "$epic_games_launcher_path2" ]]; then @@ -2194,10 +2193,14 @@ elif [[ -f "$epic_games_launcher_path2" ]]; then epicshortcutdirectory="\"$epic_games_launcher_path2\"" epiclaunchoptions="STEAM_COMPAT_DATA_PATH=\"${logged_in_home}/.local/share/Steam/steamapps/compatdata/EpicGamesLauncher/\" %command%" epicstartingdir="\"$(dirname "$epic_games_launcher_path2")\"" + echo "export epicshortcutdirectory=$epicshortcutdirectory" >> ${logged_in_home}/.config/systemd/user/env_vars + echo "export epiclaunchoptions=$epiclaunchoptions" >> ${logged_in_home}/.config/systemd/user/env_vars + echo "export epicstartingdir=$epicstartingdir" >> ${logged_in_home}/.config/systemd/user/env_vars echo "export epic_games_launcher=EpicGamesLauncher" >> ${logged_in_home}/.config/systemd/user/env_vars echo "Epic Games Launcher found at path 2" fi + if [[ -f "$gog_galaxy_path1" ]]; then # Gog Galaxy Launcher is installed at path 1 gogshortcutdirectory="\"$gog_galaxy_path1\"" @@ -2634,6 +2637,7 @@ fi echo "export steamid3=$steamid3" >> ${logged_in_home}/.config/systemd/user/env_vars echo "export logged_in_home=$logged_in_home" >> ${logged_in_home}/.config/systemd/user/env_vars echo "export compat_tool_name=$compat_tool_name" >> ${logged_in_home}/.config/systemd/user/env_vars +echo "export python_version=$python_version" >> ${logged_in_home}/.config/systemd/user/env_vars # Detach script from Steam process @@ -2655,10 +2659,14 @@ while steam_pid > /dev/null; do sleep 5; done # Set the path to the configset_controller_neptune.vdf file controller_config_path="${logged_in_home}/.local/share/Steam/steamapps/common/Steam Controller Configs/$steamid3/config/configset_controller_neptune.vdf" + + # Check if the configset_controller_neptune.vdf file exists if [[ -f "$controller_config_path" ]]; then # Create a backup copy of the configset_controller_neptune.vdf file cp "$controller_config_path" "$controller_config_path.bak" + echo "export controller_config_path=$controller_config_path" >> ${logged_in_home}/.config/systemd/user/env_vars + echo "Controller Config Path Found" else echo "Could not find $controller_config_path" fi @@ -2666,439 +2674,42 @@ fi -# TODO: relocate to standalone python script -# ! editorconfig will likely break this since bash uses tabs and python needs 4 spaces -# Run the Python script to create a new entry for a Steam shortcut -python3 -c " -import sys -import os -import subprocess -sys.path.insert(0, os.path.expanduser('${logged_in_home}/Downloads/NonSteamLaunchersInstallation/lib/python$python_version/site-packages')) -print(sys.path) # Add this line to print the value of sys.path -import vdf # Updated import -import binascii -import re -import shutil - -# Print the path to the file where the vdf module was loaded from -print(vdf.__file__) - -# Load the shortcuts.vdf file -with open('$shortcuts_vdf_path', 'rb') as f: - shortcuts = vdf.binary_load(f) - -# Check if the 'shortcuts' key exists in the dictionary -if 'shortcuts' not in shortcuts: - # Create an empty 'shortcuts' entry - shortcuts['shortcuts'] = {} - -# Check the format of the 'shortcuts' entry -if isinstance(shortcuts['shortcuts'], dict): - # The 'shortcuts' entry is a dictionary - for key, value in shortcuts['shortcuts'].items(): - # Check the type of the value - if not isinstance(value, (str, int, dict)): - pass - -# Define the path of the Launchers -epicshortcutdirectory = '$epicshortcutdirectory' -gogshortcutdirectory = '$gogshortcutdirectory' -uplayshortcutdirectory = '$uplayshortcutdirectory' -battlenetshortcutdirectory = '$battlenetshortcutdirectory' -eaappshortcutdirectory = '$eaappshortcutdirectory' -amazonshortcutdirectory = '$amazonshortcutdirectory' -itchioshortcutdirectory = '$itchioshortcutdirectory' -legacyshortcutdirectory = '$legacyshortcutdirectory' -humbleshortcutdirectory = '$humbleshortcutdirectory' -indieshortcutdirectory = '$indieshortcutdirectory' -rockstarshortcutdirectory = '$rockstarshortcutdirectory' -glyphshortcutdirectory = '$glyphshortcutdirectory' -minecraftshortcutdirectory = '$minecraftshortcutdirectory' -psplusshortcutdirectory = '$psplusshortcutdirectory' -vkplayhortcutdirectory = '$vkplayhortcutdirectory' -#Streaming -chromedirectory = '$chromedirectory' -websites_str = '$custom_websites_str' -custom_websites = websites_str.split(', ') -START_FRESH = '$START_FRESH' - - -app_ids = [] - - -def get_steam_shortcut_id(exe, appname): - unique_id = ''.join([exe, appname]) - id_int = binascii.crc32(str.encode(unique_id)) | 0x80000000 - return id_int - - -app_id_to_name = {} - - -def create_new_entry(shortcutdirectory, appname, launchoptions, startingdir): - if shortcutdirectory != '' and launchoptions != '': - exe = f'"{shortcutdirectory}"' - appid = get_steam_shortcut_id(exe, appname) - app_ids.append(appid) - app_id_to_name[appid] = appname - - - # Create a new entry for the Steam shortcut - new_entry = { - 'appid': f'{str(appid)}' if appid is not None else '', - 'appname': appname, - 'exe': shortcutdirectory, - 'StartDir': startingdir, - 'icon': f'${logged_in_home}/.steam/root/userdata/$steamid3/config/grid/{str(appid)}-icon.ico', - 'ShortcutPath': '', - 'LaunchOptions': launchoptions, - 'IsHidden': 0, - 'AllowDesktopConfig': 1, - 'AllowOverlay': 1, - 'OpenVR': 0, - 'Devkit': 0, - 'DevkitGameID': '', - 'LastPlayTime': 0, - 'tags': { - '0': 'favorite' - } - } - - # Check if an entry with the same appid and appname already exists - for key in shortcuts['shortcuts'].keys(): - if (shortcuts['shortcuts'][key]['appid'] == new_entry['appid'] and - shortcuts['shortcuts'][key]['appname'] == new_entry['appname']): - # A duplicate entry exists, so don't add the new entry - return - - - # Add the new entry to the shortcuts dictionary - entry_exists = False - if type(shortcuts['shortcuts']) == list: - for entry in shortcuts['shortcuts']: - entry.setdefault('appname', '') - entry.setdefault('exe', '') - if entry['appname'] == new_entry['appname'] and entry['exe'] == new_entry['exe']: - entry_exists = True - break - if not entry_exists: - shortcuts['shortcuts'].append(new_entry) - elif type(shortcuts['shortcuts']) == dict: - for key in shortcuts['shortcuts'].keys(): - shortcuts['shortcuts'][key].setdefault('appname', '') - shortcuts['shortcuts'][key].setdefault('exe', '') - if shortcuts['shortcuts'][key]['appname'] == new_entry['appname'] and shortcuts['shortcuts'][key]['exe'] == new_entry['exe']: - entry_exists = True - break - if not entry_exists: - # Check if the shortcuts['shortcuts'] dictionary is empty - if not shortcuts['shortcuts']: - max_key = -1 - else: - # Find the highest key value - max_key = max(int(key) for key in shortcuts['shortcuts'].keys()) - # Add the new entry with a key value one higher than the current maximum - shortcuts['shortcuts'][str(max_key + 1)] = new_entry - - -create_new_entry('$epicshortcutdirectory', 'Epic Games', '$epiclaunchoptions', '$epicstartingdir') -create_new_entry('$gogshortcutdirectory', 'Gog Galaxy', '$goglaunchoptions', '$gogstartingdir') -create_new_entry('$uplayshortcutdirectory', 'Ubisoft Connect', '$uplaylaunchoptions', '$uplaystartingdir') -create_new_entry('$battlenetshortcutdirectory', 'Battle.net', '$battlenetlaunchoptions', '$battlenetstartingdir') -create_new_entry('$eaappshortcutdirectory', 'EA App', '$eaapplaunchoptions', '$eaappstartingdir') -create_new_entry('$amazonshortcutdirectory', 'Amazon Games', '$amazonlaunchoptions', '$amazonstartingdir') -create_new_entry('$itchioshortcutdirectory', 'itch.io', '$itchiolaunchoptions', '$itchiostartingdir') -create_new_entry('$legacyshortcutdirectory', 'Legacy Games', '$legacylaunchoptions', '$legacystartingdir') -create_new_entry('$humbleshortcutdirectory', 'Humble Bundle', '$humblelaunchoptions', '$humblestartingdir') -create_new_entry('$indieshortcutdirectory', 'IndieGala Client', '$indielaunchoptions', '$indiestartingdir') -create_new_entry('$rockstarshortcutdirectory', 'Rockstar Games Launcher', '$rockstarlaunchoptions', '$rockstarstartingdir') -create_new_entry('$glyphshortcutdirectory', 'Glyph', '$glyphlaunchoptions', '$glyphstartingdir') -create_new_entry('$minecraftshortcutdirectory', 'Minecraft: Java Edition', '$minecraftlaunchoptions', '$minecraftstartingdir') -create_new_entry('$psplusshortcutdirectory', 'Playstation Plus', '$pspluslaunchoptions', '$psplusstartingdir') -create_new_entry('$vkplayhortcutdirectory', 'VK Play', '$vkplaylaunchoptions', '$vkplaystartingdir') -create_new_entry('$chromedirectory', 'Xbox Game Pass', '$xboxchromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'GeForce Now', '$geforcechromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Netflix', '$netlfixchromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Hulu', '$huluchromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Disney+', '$disneychromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Amazon Prime Video', '$amazonchromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Youtube', '$youtubechromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Amazon Luna', '$lunachromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'Twitch', '$twitchchromelaunchoptions', '$chrome_startdir') -create_new_entry('$chromedirectory', 'movie-web', '$moviewebchromelaunchoptions', '$chrome_startdir') - - -# Iterate over each custom website -for custom_website in custom_websites: - # Check if the custom website is not an empty string - if custom_website: - # Remove any leading or trailing spaces from the custom website URL - custom_website = custom_website.strip() - - # Remove the 'http://' or 'https://' prefix and the 'www.' prefix, if present - clean_website = custom_website.replace('http://', '').replace('https://', '').replace('www.', '') - - # Define a regular expression pattern to extract the game name from the URL - pattern = r'/games/([\w-]+)' - - # Use the regular expression to search for the game name in the custom website URL - match = re.search(pattern, custom_website) - - # Check if a match was found - if match: - # Extract the game name from the match object - game_name = match.group(1) - - # Replace hyphens with spaces - game_name = game_name.replace('-', ' ') - - # Capitalize the first letter of each word in the game name - game_name = game_name.title() - else: - # Use the entire URL as the entry name - game_name = clean_website - - # Define the launch options for this website - chromelaunch_options = f'run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1280,800 --force-device-scale-factor=1.00 --device-scale-factor=1.00 --kiosk https://{clean_website}/ --chrome-kiosk-type=fullscreen --no-first-run --enable-features=OverlayScrollbar' - - # Call the create_new_entry function for this website - create_new_entry('$chromedirectory', game_name, chromelaunch_options, '$chrome_startdir') - -print(f'app_id_to_name: {app_id_to_name}') - -# Save the updated shortcuts dictionary to the shortcuts.vdf file -with open('$shortcuts_vdf_path', 'wb') as f: - vdf.binary_dump(shortcuts, f) - -# Writes to the config.vdf File - -excluded_appids = [] -streaming_sites = ['Netflix', 'Hulu', 'Disney+', 'Amazon Prime Video', 'Youtube', 'movie-web', 'Amazon Luna', 'Twitch', 'Xbox Game Pass', 'GeForce Now'] - -for app_id, name in app_id_to_name.items(): - if name in streaming_sites: - excluded_appids.append(app_id) - -# Remove the app IDs of the streaming sites from the app_ids list -app_ids = [app_id for app_id in app_ids if app_id_to_name[app_id] not in streaming_sites] - -# Remove the app IDs of the streaming sites from the app_id_to_name dictionary -app_id_to_name = {app_id: name for app_id, name in app_id_to_name.items() if name not in streaming_sites} -# Update the config.vdf file -with open('$config_vdf_path', 'r') as f: - config = vdf.load(f) - -# Check if the CompatToolMapping key exists -if 'CompatToolMapping' not in config['InstallConfigStore']['Software']['Valve']['Steam']: - # Create the CompatToolMapping key and set its value to an empty dictionary - config['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'] = {} - -for app_id in app_ids: - # Check if the app_id is in the list of excluded appids - if app_id not in excluded_appids: - # Update the CompatToolMapping for this app_id - if str(app_id) in config['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping']: - config['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]['name'] = '$compat_tool_name' - config['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]['config'] = '' - config['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]['priority'] = '250' - else: - config['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)] = {'name': '$compat_tool_name', 'config': '', 'priority': '250'} - -# Save the updated config dictionary to the config.vdf file -with open('$config_vdf_path', 'w') as f: - vdf.dump(config, f) - -# Load the configset_controller_neptune.vdf file -with open('$controller_config_path', 'r') as f: - config = vdf.load(f) - -# Add new entries for the games -for app_id in app_ids: - config['controller_config'][str(app_id)] = { - 'workshop': 'workshop_id' - } - -# Add new entries for the installed launchers and games -config['controller_config']['epic games'] = { - 'workshop': '2800178806' -} -config['controller_config']['gog galaxy'] = { - 'workshop': '2877189386' -} -config['controller_config']['ubisoft connect'] = { - 'workshop': '2804140248' -} -config['controller_config']['amazon games'] = { - 'workshop': '2871935783' -} -config['controller_config']['battlenet'] = { - 'workshop': '2887894308' -} -config['controller_config']['rockstar games launcher'] = { - 'workshop': '1892570391' -} -config['controller_config']['indiegala'] = { - 'template': 'controller_neptune_webbrowser.vdf' -} -config['controller_config']['legacy games'] = { - 'template': 'controller_neptune_webbrowser.vdf' -} -config['controller_config']['ea app'] = { - 'workshop': '2899822740' -} -config['controller_config']['itchio'] = { - 'workshop': '2845891813' -} -config['controller_config']['humble games collection'] = { - 'workshop': '2883791560' -} -config['controller_config']['minecraft java edition'] = { - 'workshop': '2980553929' -} -config['controller_config']['playstation plus'] = { - 'workshop': 'controller_neptune_webbrowser.vdf' -} -config['controller_config']['glyph'] = { - 'template': 'controller_neptune_webbrowser.vdf' -} -config['controller_config']['vk play'] = { - 'workshop': '3202642880' -} -config['controller_config']['amazon prime video'] = { - 'workshop': '2970669392' -} -config['controller_config']['hulu'] = { - 'workshop': '2970669392' -} -config['controller_config']['netflix'] = { - 'workshop': '2970669392' -} -config['controller_config']['disney+'] = { - 'workshop': '2970669392' -} -config['controller_config']['youtube'] = { - 'workshop': '2970669392' -} -config['controller_config']['geforce now'] = { - 'template': 'controller_neptune_gamepad+mouse.vdf' -} -config['controller_config']['amazon luna'] = { - 'template': 'controller_neptune_gamepad+mouse.vdf' -} -config['controller_config']['twitch'] = { - 'workshop': '2875543745' -} -config['controller_config']['movie-web'] = { - 'workshop': 'controller_neptune_webbrowser.vdf' -} - -# Save the updated config dictionary to the configset_controller_neptune.vdf file -with open('$controller_config_path', 'w') as f: - vdf.dump(config, f) - -# Define the path to the compatdata directory -compatdata_dir = '${logged_in_home}/.local/share/Steam/steamapps/compatdata' - -# Define a dictionary of original folder names -folder_names = { - 'Epic Games': 'EpicGamesLauncher', - 'Gog Galaxy': 'GogGalaxyLauncher', - 'Ubisoft Connect': 'UplayLauncher', - 'Battle.net': 'Battle.netLauncher', - 'EA App': 'TheEAappLauncher', - 'Amazon Games': 'AmazonGamesLauncher', - 'itch.io': 'itchioLauncher', - 'Legacy Games': 'LegacyGamesLauncher', - 'Humble Bundle': 'HumbleGamesLauncher', - 'IndieGala Client': 'IndieGalaLauncher', - 'Rockstar Games Launcher': 'RockstarGamesLauncher', - 'Minecraft: Java Edition': 'MinecraftLauncher', - 'Playstation Plus': 'PlaystationPlusLauncher', - 'VK Play': 'VKPlayLauncher', -} - -# Iterate over each launcher in the folder_names dictionary -for launcher_name, folder in folder_names.items(): - # Define the current path of the folder - current_path = os.path.join(compatdata_dir, folder) - - # Check if the folder exists - if os.path.exists(current_path): - print(f'{launcher_name}: {folder} exists') - # Get the app ID for this launcher from the app_id_to_name dictionary - appid = next(key for key, value in app_id_to_name.items() if value == launcher_name) - - # Define the new path of the folder - new_path = os.path.join(compatdata_dir, str(appid)) - - # Rename the folder - os.rename(current_path, new_path) - - # Define the path of the symbolic link - symlink_path = os.path.join(compatdata_dir, folder) - - # Create a symbolic link to the renamed folder - os.symlink(new_path, symlink_path) - else: - print(f'{launcher_name}: {folder} does not exist') -# Check if the NonSteamLaunchers folder exists -if os.path.exists(os.path.join(compatdata_dir, 'NonSteamLaunchers')): - # Get the first app ID from the app_ids list - first_app_id = app_ids[0] - # Define the current path of the NonSteamLaunchers folder - current_path = os.path.join(compatdata_dir, 'NonSteamLaunchers') - - # Check if NonSteamLaunchers is already a symbolic link - if os.path.islink(current_path): - print('NonSteamLaunchers is already a symbolic link') - else: - # Define the new path of the NonSteamLaunchers folder - new_path = os.path.join(compatdata_dir, str(first_app_id)) - - # Move the NonSteamLaunchers folder to the new path - shutil.move(current_path, new_path) - - # Define the path of the symbolic link - symlink_path = os.path.join(compatdata_dir, 'NonSteamLaunchers') - - # Create a symbolic link to the renamed NonSteamLaunchers folder - os.symlink(new_path, symlink_path)" # 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 -rm -rf "$download_dir" +#rm -rf "$download_dir" #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 -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 -service_status=$(systemctl --user is-active nslgamescanner.service) +#service_status=$(systemctl --user is-active nslgamescanner.service) -if [ "$service_status" = "active" ] || [ "$service_status" = "activating" ] -then - echo "Service is already running or activating. Stopping the service..." - systemctl --user stop nslgamescanner.service -fi +#if [ "$service_status" = "active" ] || [ "$service_status" = "activating" ] +#then + #echo "Service is already running or activating. Stopping the service..." + #systemctl --user stop nslgamescanner.service +#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