diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-12 19:17:23 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-12 19:17:23 +0200 |
| commit | 94b99069f00413e5ad426c93a8ffbd52386d5b4e (patch) | |
| tree | df73648c89fbd5d8979ac69639bd9566df67d0ad | |
| parent | 84f2c5c785132dd1641caf30e87be7b84a7e5791 (diff) | |
| download | quickshell-94b99069f00413e5ad426c93a8ffbd52386d5b4e.tar.gz quickshell-94b99069f00413e5ad426c93a8ffbd52386d5b4e.zip | |
fix(window-switcher): namespace it like the other four
The layer surface announced itself as window-switcher, while the other
components all use a quickshell- prefix and the blur rules in
decorations.lua match on it. A rule for the odd one out would have been
the only one in that file matching a bare name, so the component matches
the convention instead.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SYg4wYHq5XNbiVmMeKRb1S
| -rw-r--r-- | window-switcher/Switcher.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/window-switcher/Switcher.qml b/window-switcher/Switcher.qml index 960cb58..d907ab7 100644 --- a/window-switcher/Switcher.qml +++ b/window-switcher/Switcher.qml @@ -75,7 +75,7 @@ Scope { color: "transparent" exclusionMode: ExclusionMode.Ignore WlrLayershell.layer: WlrLayer.Overlay - WlrLayershell.namespace: "window-switcher" + WlrLayershell.namespace: "quickshell-window-switcher" WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive // Keys reach a focused item, not a window: Keys.onEscapePressed on |
