test new systray #50

Merged
zach merged 6 commits from new-systray into main 2026-04-09 19:26:57 +02:00
Showing only changes of commit 2ec8ef6299 - Show all commits
+5 -1
View File
@@ -66,7 +66,7 @@ Singleton {
Process { Process {
id: cmdDetect id: cmdDetect
command: ["sh", "-c", "command -v yay || command -v paru"] command: ["sh", "-c", "command -v checkupdates || command -v yay || command -v paru"]
running: true running: true
stdout: StdioCollector { stdout: StdioCollector {
@@ -80,7 +80,11 @@ Singleton {
helper = "pacman"; helper = "pacman";
} }
if (helper === "checkupdates") {
updatesProc.command = [helper];
} else {
updatesProc.command = [helper, "-Qu"]; updatesProc.command = [helper, "-Qu"];
}
root.commandReady = true; root.commandReady = true;
} }
} }