about summary refs log tree commit diff
path: root/home/modules/profiles/base/config/dunst.nix
blob: 6b018ab18d9571aee8ef952711f769f82e37b1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ neotheme }:

with neotheme.colors;
{
  global = {
    padding = 8;
    width = "330";
    height = "500";
    origin = "top-right";
    offset = "8x25";
    notification_limit = 5;
    frame_width = 2;
    vertical_alignment = "center";
    horizontal_padding = 8;
    icon_position = "left";
    corner_radius = 10;
    
    markup = "full";
    word_wrap = true;
    show_indicators = false;
    format = "<b>%s</b>\\n\\n%b";
    font = "Dina 10";
    frame_color = "#${color3}";
    separator_color = "auto";
    max_icon_size = 80;
  };

  urgency_low = {
    foreground = "#${foreground}";
    background = "#${background}";
    frame_color = "#${color4}";
    timeout = 4;
  };

  urgency_normal = {
    foreground = "#${foreground}";
    background = "#${background}";
    frame_color = "#${color3}";
    timeout = 8;
  };

  urgency_critical = {
    foreground = "#${foreground}";
    background = "#${background}";
    frame_color = "#${color1}";
  };
}