This commit is contained in:
Hadi 2024-08-30 16:13:57 +02:00
parent fcd5eca04f
commit 4540b40dc4
3 changed files with 10 additions and 2 deletions

View File

@ -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 = {

View File

@ -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"

View File

@ -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"