dotfiles/config/dunst/dunstrc (view raw)
| 1 | # vim: ft=ini |
| 2 | # https://dunst-project.org/documentation |
| 3 | |
| 4 | [global] |
| 5 | font = JetBrains Mono Nerd Font 14 |
| 6 | enable_recursive_icon_lookup = true |
| 7 | show_age_threshold = 60 |
| 8 | markup = full |
| 9 | word_wrap = yes |
| 10 | ignore_newline = no |
| 11 | stack_duplicates = false |
| 12 | hide_duplicate_count = false |
| 13 | shrink = no |
| 14 | idle_threshold = 120 |
| 15 | follow = keyboard |
| 16 | |
| 17 | mouse_left_click = close_all |
| 18 | mouse_right_click = do_action |
| 19 | |
| 20 | sticky_history = yes |
| 21 | history_length = 10 |
| 22 | line_height = 4 |
| 23 | separator_height = 4 |
| 24 | padding = 15 |
| 25 | horizontal_padding = 15 |
| 26 | separator_color = auto |
| 27 | startup_notification = true |
| 28 | |
| 29 | browser = x-www-browser -new-tab |
| 30 | |
| 31 | icon_position = left |
| 32 | max_icon_size = 48 |
| 33 | |
| 34 | frame_width = 0 |
| 35 | |
| 36 | always_run_script = true |
| 37 | title = Dunst |
| 38 | class = Dunst |
| 39 | |
| 40 | geometry = "250x50-5+30" |
| 41 | origin = top-right |
| 42 | offset = 9x14 |
| 43 | width = (0,500) |
| 44 | |
| 45 | # Display indicators for URLs (U) and actions (A). |
| 46 | show_indicators = no |
| 47 | |
| 48 | # %a appname |
| 49 | # %s summary |
| 50 | # %b body |
| 51 | # %i iconname (including its path) |
| 52 | # %I iconname (without its path) |
| 53 | # %p progress value if set ([ 0%] to [100%]) or nothing |
| 54 | format = "<b>%s</b>\n%b" |
| 55 | corner_radius = 8 |
| 56 | sort = no |
| 57 | indicate_hidden = yes |
| 58 | |
| 59 | # Possible values are "left", "center" and "right". |
| 60 | alignment = center |
| 61 | |
| 62 | |
| 63 | [urgency_low] |
| 64 | frame_color = "#1a1b26" |
| 65 | background = "#1a1b26" |
| 66 | foreground = "#c0caf5" |
| 67 | timeout = 10 |
| 68 | |
| 69 | [urgency_normal] |
| 70 | frame_color = "#15161e" |
| 71 | background = "#1a1b26" |
| 72 | foreground = "#c0caf5" |
| 73 | timeout = 10 |
| 74 | |
| 75 | [urgency_critical] |
| 76 | frame_color = "#f7768e" |
| 77 | background = "#1a1b26" |
| 78 | foreground = "#c0caf5" |
| 79 | timeout = 10 |