diff --git a/home/hyprland/anyrun.nix b/home/hyprland/anyrun.nix index 99c0ce8b..59df6b8b 100644 --- a/home/hyprland/anyrun.nix +++ b/home/hyprland/anyrun.nix @@ -46,10 +46,13 @@ #match, #entry, #plugin, - #main { background: transparent; } + #main { + background: transparent; + border: 1px solid transparent; + } #match.activatable { - border-radius: 10px; + border-radius: 5px; padding: .3rem .9rem; margin-top: .01rem; } @@ -57,27 +60,26 @@ #match.activatable:last-child { margin-bottom: .6rem; } #plugin:hover #match.activatable { - border-radius: 10px; + border-radius: 5px; padding: .3rem; margin-top: .01rem; margin-bottom: 0; } - #match:selected, #match:hover, #plugin:hover { - background: alpha(${base03}, .1); - border: 1px solid ${base0A}; - } + #match:hover, #plugin:hover { border: 1px solid ${base03}; } + + #match:selected { border: 1px solid ${base0A}; } #entry { background: alpha(${base01}, .05); border: 1px solid ${base03}; - border-radius: 10px; + border-radius: 5px; margin: .3rem; padding: .3rem 1rem; } list > #plugin { - border-radius: 16px; + border-radius: 5px; margin: 0 .3rem; } list > #plugin:first-child { margin-top: .3rem; } @@ -86,8 +88,8 @@ box#main { background: alpha(${base00}, .5); - box-shadow: inset 0 0 0 1px rgba(183, 189, 248, .1), 0 0 0 1px rgba(36, 39, 58, .5); - border-radius: 10px; + box-shadow: inset 0 0 0 1px alpha(${base05}, .1), 0 0 0 1px alpha(${base00}, .5); + border-radius: 5px; padding: .3rem; } ''; diff --git a/home/hyprland/config.nix b/home/hyprland/config.nix index 1eec5b33..7ee4267b 100644 --- a/home/hyprland/config.nix +++ b/home/hyprland/config.nix @@ -61,7 +61,7 @@ in '' } decoration { - rounding = 10 + rounding = 5 drop_shadow = yes shadow_ignore_window = true shadow_range = 4 diff --git a/home/hyprland/mako.nix b/home/hyprland/mako.nix index 2b25fa75..03d50120 100644 --- a/home/hyprland/mako.nix +++ b/home/hyprland/mako.nix @@ -12,6 +12,6 @@ margin = "20"; padding = "10"; sort = "-time"; - borderRadius = 10; + borderRadius = 5; }; } diff --git a/home/hyprland/waybar/style.css b/home/hyprland/waybar/style.css index 8e1f9f9e..53d14c56 100644 --- a/home/hyprland/waybar/style.css +++ b/home/hyprland/waybar/style.css @@ -11,7 +11,7 @@ window > box { margin: 5px 5px 0px; padding: 0px; border: 1px solid @base03; - border-radius: 10px; + border-radius: 5px; } tooltip { @@ -19,7 +19,7 @@ tooltip { background: alpha(@base00, 0.5); box-shadow: inset 0 0 0 1px alpha(@base0A, 0.1), 0 0 0 1px alpha(@base00, 0.5); border: 1px solid @base0A; - border-radius: 10px; + border-radius: 5px; padding: 5px; margin: 0px; }