diff --git a/dots/.config/kitty/kitty.conf.nix b/dots/.config/kitty/kitty.conf.nix index ec8b845..d4d0c36 100644 --- a/dots/.config/kitty/kitty.conf.nix +++ b/dots/.config/kitty/kitty.conf.nix @@ -24,7 +24,7 @@ in { enable_audio_bell no confirm_os_window_close 0 - background_opacity 0.7 + background_opacity 1.0 font_family family='CaskaydiaCove Nerd Font' postscript_name=CaskaydiaCoveNF-Light bold_font family='CaskaydiaCove Nerd Font' style=SemiBold @@ -34,7 +34,7 @@ in { # The basic colors foreground ${colors.text} - background #000000 + background ${colors.base} selection_foreground ${colors.base} selection_background ${colors.rosewater} diff --git a/modules/wm/hyprland/default.nix b/modules/wm/hyprland/default.nix index 9b2b3a5..4f4da46 100644 --- a/modules/wm/hyprland/default.nix +++ b/modules/wm/hyprland/default.nix @@ -90,16 +90,20 @@ in { decoration = { rounding = 10; - activeOpacity = 1.0; - inactiveOpacity = 1.0; + activeOpacity = 0.9; + inactiveOpacity = 0.7; dimSpecial = 0.4; - shadow.enabled = false; + shadow = { + enabled = true; + range = 15; + colorInactive = "0x881a1a1a"; + }; blur = { enabled = true; - size = 25; + size = 10; passes = 3; }; };