mirror of
https://github.com/basecamp/omarchy.git
synced 2026-01-09 05:10:54 +08:00
* Fix Hyprland 0.53 windowrule syntax breaking changes Hyprland 0.53 introduced breaking changes to windowrule syntax: - Props now use `match:` prefix: `class:pattern` → `match:class pattern` - Boolean effects require `on` suffix: `float` → `float on` - Snake_case naming: `nofocus` → `no_focus`, `stayfocused` → `stay_focused` - `noborder` replaced with `border_size 0` - `noanim` replaced with `animation none` - layerrule syntax: `noanim, X` → `animation none, match:namespace X` - `misc:new_window_takes_over_fullscreen` → `misc:on_focus_under_fullscreen` See: https://github.com/hyprwm/hyprland-wiki/pull/1278 * Correct for the new style * Migrate the scrolltouchpad setting in userland too * Need a reboot to pair with new Hyprland --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
13 lines
468 B
Plaintext
13 lines
468 B
Plaintext
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
|
# Hyprland 0.53+ syntax
|
|
windowrule = suppress_event maximize, match:class .*
|
|
|
|
# Just dash of opacity by default
|
|
windowrule = opacity 0.97 0.9, match:class .*
|
|
|
|
# Fix some dragging issues with XWayland
|
|
windowrule = no_focus on, match:class ^$, match:title ^$, match:xwayland 1, match:float 1, match:fullscreen 0, match:pin 0
|
|
|
|
# App-specific tweaks
|
|
source = ~/.local/share/omarchy/default/hypr/apps.conf
|