custom: add rounding option
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
8aed7f06f1
commit
2ae2bb6c13
2 changed files with 2 additions and 3 deletions
|
@ -29,8 +29,7 @@ in {
|
||||||
# TODO: Use option for border size
|
# TODO: Use option for border size
|
||||||
border = mkOption {default = 2;};
|
border = mkOption {default = 2;};
|
||||||
|
|
||||||
gap = mkOption {default = 10;};
|
rounding = mkOption {default = 10;};
|
||||||
padding = mkOption {default = 56;}; # ?? journalctl --user -u waybar.service | grep height:
|
|
||||||
|
|
||||||
### Misc
|
### Misc
|
||||||
wallpaper = mkOption {default = false;};
|
wallpaper = mkOption {default = false;};
|
||||||
|
|
|
@ -120,7 +120,7 @@ in {
|
||||||
"col.shadow" = "rgba(00000040)";
|
"col.shadow" = "rgba(00000040)";
|
||||||
blur.enabled = false;
|
blur.enabled = false;
|
||||||
dim_special = 0;
|
dim_special = 0;
|
||||||
rounding = 12;
|
rounding = config.custom.rounding;
|
||||||
shadow_range = 50;
|
shadow_range = 50;
|
||||||
shadow_render_power = 4; # Distance falloff
|
shadow_render_power = 4; # Distance falloff
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue