From 6baa571a91cdff708c877cbe58e359ea6367eaa1 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Thu, 27 Nov 2025 10:10:09 +0100 Subject: [PATCH] hurricane: 223 current 2025-11-27 10:10:06 25.05.20251124.1c8ba8d 6.17.8 * fix hyprland config hurricane: 224 current 2025-11-27 10:29:38 25.05.20251124.1c8ba8d 6.17.8 * hurricane: 225 current 2025-11-27 10:31:20 25.05.20251124.1c8ba8d 6.17.8 * --- modules/hm/hyprland.nix | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/modules/hm/hyprland.nix b/modules/hm/hyprland.nix index 109da95..9f66b94 100644 --- a/modules/hm/hyprland.nix +++ b/modules/hm/hyprland.nix @@ -101,26 +101,25 @@ in { # Layer rules layerrule = [ - "blur, waybar" # Blur waybar - "ignorezero, waybar" - "ignorealpha 0.5, waybar" - "noanim, hyprpicker" # fix screenshot border visible - "noanim, selection" # fix screenshot border visible + "match:namespace waybar, blur on" # Blur waybar + "match:namespace waybar, ignore_alpha 0.5" + "match:namespace hyprpicker, no_anim on" # fix screenshot border visible + "match:namespace selection, no_anim on" # fix screenshot border visible ]; # Window rules - windowrulev2 = [ + windowrule = [ # Nice transparency for some apps (unless in fullscreen) - "opacity 0.9,fullscreen:0,class:^(cursor)$" - "opacity 0.9,fullscreen:0,class:^(firefox)$" - "opacity 0.9,fullscreen:0,class:^(GitKraken)$" - "opacity 0.9,fullscreen:0,class:^(obsidian)$" + "match:class ^(cursor)$, match:fullscreen false, opacity 0.9" + "match:class ^(firefox)$, match:fullscreen false, opacity 0.9" + "match:class ^(GitKraken)$, match:fullscreen false, opacity 0.9" + "match:class ^(obsidian)$, match:fullscreen false, opacity 0.9" # Ensure hyprland tearing on games - "immediate,class:^(steam_app)$" + "match:class ^(steam_app)$, immediate on" # Keep Rofi focused - "stayfocused, class:^(Rofi)$" + "match:class ^(Rofi)$, stay_focused on" ]; # Bindings