tons of theme tweaks, +gruvbox
This commit is contained in:
parent
80d22a470a
commit
2ad77494b2
30 changed files with 410 additions and 371 deletions
|
|
@ -12,20 +12,22 @@ in {
|
|||
hm.services.dunst = {
|
||||
enable = true;
|
||||
|
||||
settings = with config.colorScheme.palette; {
|
||||
settings = let
|
||||
inherit (config.modules.desktop.themes) rounding padding;
|
||||
in with config.scheme.withHashtag; {
|
||||
global = {
|
||||
follow = "mouse";
|
||||
width = 300;
|
||||
height = 145;
|
||||
frame_color = "#${base02}";
|
||||
frame_color = "${base02}";
|
||||
|
||||
origin = "top-right";
|
||||
# various non-color theming settings
|
||||
offset = "15x15";
|
||||
padding = 15;
|
||||
horizontal_padding = 15;
|
||||
text_icon_padding = 15;
|
||||
corner_radius = 8;
|
||||
offset = let offset = builtins.toString (padding * 2); in "${offset}x${offset}";
|
||||
padding = padding;
|
||||
horizontal_padding = padding;
|
||||
text_icon_padding = padding;
|
||||
corner_radius = rounding;
|
||||
gap_size = 0;
|
||||
frame_width = 1;
|
||||
|
||||
|
|
@ -33,7 +35,7 @@ in {
|
|||
|
||||
progress_bar = true;
|
||||
progress_bar_frame_width = 1;
|
||||
progress_bar_corner_radius = 8;
|
||||
progress_bar_corner_radius = rounding;
|
||||
|
||||
alignment = "left";
|
||||
markup = "full";
|
||||
|
|
@ -56,19 +58,19 @@ in {
|
|||
};
|
||||
|
||||
urgency_low = {
|
||||
background = "#${base00}FF";
|
||||
foreground = "#${base05}";
|
||||
background = "${base00}FF";
|
||||
foreground = "${base05}";
|
||||
};
|
||||
|
||||
urgency_normal = {
|
||||
background = "#${base00}FF";
|
||||
foreground = "#${base05}";
|
||||
background = "${base00}FF";
|
||||
foreground = "${base05}";
|
||||
};
|
||||
|
||||
urgency_critical = {
|
||||
background = "#${base00}FF";
|
||||
foreground = "#${base05}";
|
||||
frame_color = "#${base08}"; # base16 spec says red
|
||||
background = "${base00}FF";
|
||||
foreground = "${base05}";
|
||||
frame_color = "${base08}"; # base16 spec says red
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue