From 15703bce047e261b3c41cab2ecca6357d983bfc9 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 24 Jul 2025 21:40:35 +0700 Subject: [PATCH] session: detect more package managers --- .config/quickshell/ii/modules/session/Session.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/session/Session.qml b/.config/quickshell/ii/modules/session/Session.qml index af48e0d6..8dfa4aa9 100644 --- a/.config/quickshell/ii/modules/session/Session.qml +++ b/.config/quickshell/ii/modules/session/Session.qml @@ -30,7 +30,8 @@ Scope { Process { id: detectPackageManagerProc - command: ["pidof", "pacman", "yay", "paru", "dnf", "zypper", "apt", "apx"] + command: ["pidof", "pacman", "yay", "paru", "dnf", "zypper", "apt", "apx", "xbps", "flatpak", "snap", "apk", + "yum", "epsi", "pikman"] onExited: (exitCode, exitStatus) => { root.packageManagerRunning = (exitCode === 0); }