From 7e94ee60aa59090c437ddecbdccdcbbb5e9989eb Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 19 Mar 2026 08:48:43 +0100 Subject: [PATCH] sessionwarnings: pacman: only check critical operations --- dots/.config/quickshell/ii/services/SessionWarnings.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/services/SessionWarnings.qml b/dots/.config/quickshell/ii/services/SessionWarnings.qml index c698d28c7..5a9e796a3 100644 --- a/dots/.config/quickshell/ii/services/SessionWarnings.qml +++ b/dots/.config/quickshell/ii/services/SessionWarnings.qml @@ -23,7 +23,7 @@ Singleton { Process { id: detectPackageManagerProc - command: ["bash", "-c", "pidof pacman yay paru dnf zypper apt apx xbps snap apk yum epsi pikman"] + command: ["bash", "-c", "pidof yay paru dnf zypper apt apx xbps snap apk yum epsi pikman || ls /var/lib/pacman/db.lck"] onExited: (exitCode, exitStatus) => { root.packageManagerRunning = (exitCode === 0); }