diff --git a/src/script/arch-update-tray.py b/src/script/arch-update-tray.py index 34b732d..ec698cc 100755 --- a/src/script/arch-update-tray.py +++ b/src/script/arch-update-tray.py @@ -26,6 +26,8 @@ def arch_update(): """ Launch with terminal """ update = "/usr/share/applications/arch-update.desktop" + if not os.path.isfile(update): + update = "/usr/local/share/applications/arch-update.desktop" subprocess.run(["gio", "launch", update], check=False)