feat: add feature to update cachyOS in the background

This commit is contained in:
2026-05-05 08:30:33 +02:00
parent 4a0ae14f8b
commit 3ea6ce58b3
15 changed files with 1190 additions and 0 deletions

11
bin/cachyos-updater-ui Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
"""Interface graphique CachyOS Updater."""
import sys
sys.path.insert(0, "/usr/lib/cachyos-updater")
from ui import UpdaterApp
app = UpdaterApp()
sys.exit(app.run(sys.argv))