From 2449bc2d477e7a36dd3c5f0ab77303ad327bde3a Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Wed, 21 Jan 2026 14:50:57 +0100 Subject: [PATCH] hyprland: Use windowrule v3 --- modules/home/de/hyprland/settings.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/home/de/hyprland/settings.nix b/modules/home/de/hyprland/settings.nix index 659101a..3a4b2c4 100644 --- a/modules/home/de/hyprland/settings.nix +++ b/modules/home/de/hyprland/settings.nix @@ -83,16 +83,16 @@ ]; windowrule = [ # No borders on floating window when it's the only window - "bordersize 0, floating:1, onworkspace:w[1]" + "border_size 0, match:float 1, match:workspace w[1]" # No borders on tiled window when it's the only tiled window - "bordersize 0, floating:0, onworkspace:w[t1]" - # No rounding on tiled window when it's the only tiled window on a normal workspace - "rounding 0, floating:0, onworkspace:w[t1]s[false]" + "border_size 0, match:float 0, match:workspace w[t1]" + # No rounding on tiled window when it's the only tiled windonoinitialfocus, class:(jetbrains-)(.*), floating:1w on a normal workspace + "rounding 0, match:float 0, match:workspace w[t1]s[false]" - "idleinhibit fullscreen, class:.*" + "idle_inhibit fullscreen, match:class .*" # Fix flickering in JetBrains-IDEs - "noinitialfocus, class:(jetbrains-)(.*), floating:1" + "no_initial_focus on, match:class (jetbrains-)(.*), match:float 1" ]; }; };