From b4fcc4ca7c9ab442bb20d896b123146525ed591a Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Sat, 21 Jun 2025 11:33:01 +0200 Subject: [PATCH] dont make things transparent when in fullscreen --- modules/home/hyprland.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/home/hyprland.nix b/modules/home/hyprland.nix index bcf415a..97dfd48 100644 --- a/modules/home/hyprland.nix +++ b/modules/home/hyprland.nix @@ -71,11 +71,11 @@ in { # Window rules windowrulev2 = [ - # Nice transparency for some apps - "opacity 0.9,class:^(cursor)$" - "opacity 0.9,class:^(firefox)$" - "opacity 0.9,class:^(GitKraken)$" - "opacity 0.9,class:^(obsidian)$" + # 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)$" # Keep Rofi focused "stayfocused, class:^(Rofi)$"