diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-04-19 08:28:55 -0400 |
|---|---|---|
| committer | Don Williams <Don.e.williams@gmail.com> | 2026-04-19 08:28:55 -0400 |
| commit | def3d5510b478de42c99039409efe09ed62c6800 (patch) | |
| tree | d149f396a12ce715ec7e2a6b7508b54b1b0a6575 | |
| parent | f9f0fefbb3308cc51023fd7ffacf9b14ed5ff68d (diff) | |
OverviewToggle wasn't checking for qs
Causing a new qs process to start up each time
On branch main
Your branch is up to date with 'origin/main'.
Changes to be committed:
modified: OverviewToggle.sh
| -rwxr-xr-x | config/hypr/scripts/OverviewToggle.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hypr/scripts/OverviewToggle.sh b/config/hypr/scripts/OverviewToggle.sh index 719788da..14470eb0 100755 --- a/config/hypr/scripts/OverviewToggle.sh +++ b/config/hypr/scripts/OverviewToggle.sh @@ -10,7 +10,7 @@ set -euo pipefail # 1) Try Quickshell via IPC (works if QS is running and listening) -if pgrep -x quickshell >/dev/null 2>&1; then +if pgrep -x qs >/dev/null 2>&1; then if qs ipc -c overview call overview toggle >/dev/null 2>&1; then exit 0 fi |
