diff --git a/home/system/hyprland/default.nix b/home/system/hyprland/default.nix index e5c69a1..2cdcc4d 100644 --- a/home/system/hyprland/default.nix +++ b/home/system/hyprland/default.nix @@ -145,12 +145,14 @@ }; decoration = { + active_opacity = config.var.theme.active-opacity; + inactive_opacity = config.var.theme.inactive-opacity; rounding = config.var.theme.rounding; drop_shadow = true; shadow_range = 20; shadow_render_power = 3; "col.shadow" = "rgba(00000055)"; - blur = { enabled = false; }; + blur = { enabled = if config.var.theme.blur then "true" else "false"; }; }; master = { diff --git a/hosts/themes/nixy.nix b/hosts/themes/nixy.nix index 306e1ac..555d398 100644 --- a/hosts/themes/nixy.nix +++ b/hosts/themes/nixy.nix @@ -1,5 +1,5 @@ { - wallpaper = "dark_cloud.png"; + wallpaper = "nix.png"; font = "SFProDisplay Nerd Font"; font-mono = "FiraCode Nerd Font Mono"; @@ -8,6 +8,9 @@ rounding = 15; gaps-in = 10; gaps-out = 10 * 2; + active-opacity = 0.95; + inactive-opacity = 0.9; + blur = true; border-size = 3; animation-speed = "fast"; # "fast" | "medium" | "slow" fetch = "nerdfetch"; # "nerdfetch" | "neofetch" | "pfetch" | "none" diff --git a/hosts/themes/windows.nix b/hosts/themes/windows.nix index 64a60bd..159905b 100644 --- a/hosts/themes/windows.nix +++ b/hosts/themes/windows.nix @@ -8,6 +8,9 @@ rounding = 10; gaps-in = 6; gaps-out = 6 * 2; + active-opacity = 0.95; + inactive-opacity = 0.9; + blur = true; border-size = 1; animation-speed = "medium"; # "fast" | "medium" | "slow" fetch = "none"; # "nerdfetch" | "neofetch" | "pfetch" | "none"