From d8abea9e180aa005551f866962ededdb00ed1fdf Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Wed, 21 Jan 2026 23:23:38 +0100 Subject: [PATCH] Revert "hyprland: Use windowrule v3" This reverts commit 2449bc2d477e7a36dd3c5f0ab77303ad327bde3a. --- 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 3a4b2c4..659101a 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 - "border_size 0, match:float 1, match:workspace w[1]" + "bordersize 0, floating:1, onworkspace:w[1]" # No borders on tiled window when it's the only tiled window - "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]" + "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]" - "idle_inhibit fullscreen, match:class .*" + "idleinhibit fullscreen, class:.*" # Fix flickering in JetBrains-IDEs - "no_initial_focus on, match:class (jetbrains-)(.*), match:float 1" + "noinitialfocus, class:(jetbrains-)(.*), floating:1" ]; }; };