mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 12:47:49 +02:00
15 lines
938 B
Lua
15 lines
938 B
Lua
-- Window and layer rules for the Omarchy Quickshell surfaces. The
|
||
-- shell-wide bar / menu / popouts are layer-shell.
|
||
|
||
-- Keep the bar instant: no layer-shell fade/slide animation.
|
||
hl.layer_rule({ match = { namespace = "omarchy-bar" }, no_anim = true, animation = "none" })
|
||
|
||
-- Launcher, image selector, emojis, clipboard overlays, and keyboard-driven
|
||
-- panels should pop without compositor layer fades. Panels keep their own
|
||
-- QML opacity transition for normal open/close, and skip it for panel handoff.
|
||
hl.layer_rule({ match = { namespace = "^(omarchy-menu|omarchy-launcher|omarchy-image-selector|omarchy-emojis|omarchy-clipboard|omarchy-keyboard-panel)$" }, no_anim = true, animation = "none" })
|
||
|
||
-- Dev gallery is the main shell workbench; open it maximized like
|
||
-- SUPER+ALT+F so component previews have the whole workspace.
|
||
o.window({ class = "^org.quickshell$", title = "^Omarchy shell – dev gallery$" }, { maximize = true })
|