We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d209c commit a136ee5Copy full SHA for a136ee5
src/core/flatpaks_installer.py
@@ -62,3 +62,8 @@
62
print('All Flatpak apps are installed.')
63
else:
64
print("Nothing to do.")
65
+
66
+# Remove the autostart file after finishing the operations
67
+autostart_file = f"{Path.home()}/.config/autostart/io.github.vikdevelop.SaveDesktop.Flatpak.desktop"
68
+if os.path.exists(autostart_file):
69
+ os.remove(autostart_file)
0 commit comments