mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-11-20 08:09:18 +01:00
Update NSLGameScanner.py
This commit is contained in:
parent
e518f29c2e
commit
a9082f357e
@ -197,9 +197,13 @@ hero64 = ""
|
||||
shortcuts_file = f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/shortcuts.vdf"
|
||||
|
||||
# Check if the file exists and is not executable
|
||||
if os.path.exists(shortcuts_file) and not os.access(shortcuts_file, os.X_OK):
|
||||
print("The file exists and is not executable.")
|
||||
# Write {'shortcuts: {}} to the file
|
||||
if os.path.exists(shortcuts_file):
|
||||
# Check if the file is not executable
|
||||
if not os.access(shortcuts_file, os.X_OK):
|
||||
print("The file exists but is not executable. Making it executable.")
|
||||
# Make the file executable for the user
|
||||
os.chmod(shortcuts_file, os.stat(shortcuts_file).st_mode | 0o100)
|
||||
# Write {'shortcuts': {}} to the file
|
||||
with open(shortcuts_file, 'wb') as file:
|
||||
file.write(vdf.binary_dumps({'shortcuts': {}}))
|
||||
shortcuts = {'shortcuts': {}}
|
||||
@ -212,6 +216,7 @@ else:
|
||||
print(f"Error reading file: {e}")
|
||||
shortcuts = {}
|
||||
|
||||
|
||||
# Check if the 'shortcuts' key is in the loaded data
|
||||
if 'shortcuts' not in shortcuts:
|
||||
print("The file does not contain the 'shortcuts' key.")
|
||||
|
Loading…
Reference in New Issue
Block a user