mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
|
#!@pythonInterpreter@
|
||
|
# slightly tweaked from the script created by @lionirdeadman
|
||
|
# https://github.com/flathub/com.discordapp.Discord/blob/master/disable-breaking-updates.py
|
||
|
"""
|
||
|
Disable breaking updates which will prompt users to download a deb or tar file
|
||
|
and lock them out of Discord making the program unusable.
|
||
|
|
||
|
This will dramatically improve the experience :
|
||
|
|
||
|
1) The maintainer doesn't need to be worried at all times of an update which will break Discord.
|
||
|
2) People will not be locked out of the program while the maintainer runs to update it.
|
||
|
|
||
|
"""
|
||
|
|
||
|
import json
|
||
|
import os
|
||
|
import sys
|
||
|
from pathlib import Path
|
||
|
|
||
|
XDG_CONFIG_HOME = os.environ.get("XDG_CONFIG_HOME") or os.path.join(
|
||
|
os.path.expanduser("~"), ".config"
|
||
|
)
|
||
|
|
||
|
settings_path = Path(f"{XDG_CONFIG_HOME}/@configDirName@/settings.json")
|
||
|
settings_path_temp = Path(f"{XDG_CONFIG_HOME}/@configDirName@/settings.json.tmp")
|
||
|
|
||
|
if os.path.exists(settings_path):
|
||
|
with settings_path.open(encoding="utf-8") as settings_file:
|
||
|
try:
|
||
|
settings = json.load(settings_file)
|
||
|
except json.JSONDecodeError:
|
||
|
print("[Nix] settings.json is malformed, letting Discord fix itself")
|
||
|
sys.exit(0)
|
||
|
else:
|
||
|
settings = {}
|
||
|
|
||
|
if settings.get("SKIP_HOST_UPDATE"):
|
||
|
print("[Nix] Disabling updates already done")
|
||
|
else:
|
||
|
skip_host_update = {"SKIP_HOST_UPDATE": True}
|
||
|
settings.update(skip_host_update)
|
||
|
|
||
|
os.makedirs(os.path.dirname(settings_path), exist_ok=True)
|
||
|
|
||
|
with settings_path_temp.open("w", encoding="utf-8") as settings_file_temp:
|
||
|
json.dump(settings, settings_file_temp, indent=2)
|
||
|
|
||
|
settings_path_temp.rename(settings_path)
|
||
|
print("[Nix] Disabled updates")
|