dunst/dunstrc 1.9 K raw
1
# Darkmatter dunst theme
2
#
3
# Colors and geometry only — the rest is dunst's stock behavior. Use this
4
# file directly with `dunst -config path/to/dunstrc`, or copy the sections
5
# you want into your own. Palette reference: ../README.md.
6
7
[global]
8
    monitor = 0
9
    follow = mouse
10
11
    width = 350
12
    height = (0, 300)
13
    origin = top-right
14
    # Polybar sits at y=8 with a height of 32 (24pt @ 96dpi), so its bottom
15
    # edge is y=40; 48 clears it by the same 8px gap the bar leaves at the top.
16
    offset = (12, 48)
17
18
    frame_width = 2
19
    frame_color = "#2b2b2b"
20
    separator_color = frame
21
    separator_height = 2
22
23
    # Progress bar (dunstify -h int:value:N — the vol-* scripts use it).
24
    # min == max so the bar is always flush with the text column:
25
    # width - 2*frame_width - 2*horizontal_padding = 350 - 4 - 20.
26
    progress_bar = true
27
    progress_bar_height = 8
28
    progress_bar_frame_width = 1
29
    progress_bar_min_width = 326
30
    progress_bar_max_width = 326
31
    progress_bar_corner_radius = 4
32
    progress_bar_corners = all
33
34
    padding = 10
35
    horizontal_padding = 10
36
    corner_radius = 6
37
    transparency = 0
38
39
    font = Sans 10
40
    line_height = 2
41
    markup = full
42
    format = "<b>%s</b>\n%b"
43
    alignment = left
44
    word_wrap = yes
45
    ellipsize = middle
46
    show_age_threshold = 60
47
    idle_threshold = 200
48
49
    icon_position = left
50
    max_icon_size = 32
51
52
    sort = yes
53
    stack_duplicates = true
54
    hide_duplicate_count = false
55
    show_indicators = yes
56
57
    title = Dunst
58
    class = Dunst
59
60
[urgency_low]
61
    background = "#121113"
62
    foreground = "#999999"
63
    frame_color = "#2b2b2b"
64
    highlight = "#5f8787"
65
    timeout = 4
66
67
[urgency_normal]
68
    background = "#1c1b1d"
69
    foreground = "#ffffff"
70
    frame_color = "#e78a53"
71
    highlight = "#e78a53"
72
    timeout = 6
73
74
[urgency_critical]
75
    background = "#1c1b1d"
76
    foreground = "#ffffff"
77
    frame_color = "#e75353"
78
    highlight = "#e75353"
79
    timeout = 0
80