mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
- omarchy-bar-settings.lua is gone: the Hyprland rules it carried for
the old standalone bar-settings window no longer match anything,
since settings is now a panel plugin summoned via IPC. The still-
needed "Widget settings" sub-dialog rules move into
omarchy-shell.lua next to the existing "Omarchy Settings" rules.
- plugins README documents the `bar` plugin kind so third-party
plugin authors aren't surprised to see it on the first-party
omarchy.bar manifest. The note also calls out that they should ship
`bar-widget`s, not replace the host bar.
- omarchy-style-bar-position seeds from shell-defaults.json before
mutating, so a user without a shell.json (or with a malformed one)
no longer ends up with a stub config that blanks the bar layout.
21 lines
1.3 KiB
Lua
21 lines
1.3 KiB
Lua
-- Window and layer rules for the Omarchy Quickshell surfaces. The
|
|
-- shell-wide bar / menu / popouts are layer-shell; the settings panel is
|
|
-- a regular Hyprland window via Quickshell's FloatingWindow.
|
|
|
|
-- Keep the menu instant: no layer-shell fade/slide animation.
|
|
hl.layer_rule({ match = { namespace = "omarchy-menu" }, no_anim = true, animation = "none" })
|
|
|
|
-- Image selector overlay should also pop without animation.
|
|
hl.layer_rule({ match = { namespace = "omarchy-image-selector" }, no_anim = true, animation = "none" })
|
|
|
|
-- Settings panel floats centered with a sensible default size instead of
|
|
-- tiling — it's a transient dialog, not a workspace surface.
|
|
hl.window_rule({ match = { class = "^org.quickshell$", title = "^Omarchy Settings$" }, float = true })
|
|
hl.window_rule({ match = { class = "^org.quickshell$", title = "^Omarchy Settings$" }, center = true })
|
|
hl.window_rule({ match = { class = "^org.quickshell$", title = "^Omarchy Settings$" }, size = { 960, 700 } })
|
|
|
|
-- Per-widget settings dialog opens as a smaller FloatingWindow off the
|
|
-- settings panel; keep it floating with its own default size.
|
|
hl.window_rule({ match = { class = "^org.quickshell$", title = "^Widget settings " }, float = true })
|
|
hl.window_rule({ match = { class = "^org.quickshell$", title = "^Widget settings " }, size = { 380, 320 } })
|