mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-11-20 08:09:18 +01:00
reworked vdf code
This commit is contained in:
parent
e1531369e7
commit
7b5c539982
@ -183,11 +183,7 @@ hero64 = ""
|
||||
shortcuts_file = f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/shortcuts.vdf"
|
||||
|
||||
# Check if the shortcuts file exists
|
||||
if not os.path.exists(shortcuts_file):
|
||||
# If the file does not exist, create a new file with an empty "shortcuts" section
|
||||
with open(shortcuts_file, 'wb') as file:
|
||||
vdf.binary_dumps({'shortcuts': {}}, file)
|
||||
else:
|
||||
if os.path.exists(shortcuts_file):
|
||||
# If the file exists, try to load it
|
||||
try:
|
||||
with open(shortcuts_file, 'rb') as file:
|
||||
@ -206,6 +202,10 @@ if shortcuts and isinstance(shortcuts, dict) and 'shortcuts' in shortcuts:
|
||||
vdf.binary_dumps(shortcuts, file)
|
||||
else:
|
||||
print("The data to be written to the shortcuts file is not valid.")
|
||||
else:
|
||||
# If the file does not exist, create a new file with an empty "shortcuts" section
|
||||
with open(shortcuts_file, 'wb') as file:
|
||||
vdf.binary_dumps({'shortcuts': {}}, file)
|
||||
|
||||
|
||||
# Open the config.vdf file
|
||||
|
Loading…
Reference in New Issue
Block a user