diff options
| -rw-r--r-- | .config/dunst/dunstrc | 91 | 
1 files changed, 91 insertions, 0 deletions
| diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 0000000..5193924 --- /dev/null +++ b/.config/dunst/dunstrc @@ -0,0 +1,91 @@ +[global] +    ### Display ### +    monitor = 0 +    follow = none +    geometry = "400x5-50+82" +    indicate_hidden = yes +    shrink = no +    transparency = 0 +    notification_height = 0 +    separator_height = 2 +    padding = 16 +    horizontal_padding = 16 +    frame_width = 2 +    frame_color = "#de9dac" +    separator_color = frame +    sort = yes +    idle_threshold = 10 + +    ### Text ### +    font = Inter 11 +    line_height = 0 +    markup = full + +    # The format of the message.  Possible variables are: +    #   %a  appname +    #   %s  summary +    #   %b  body +    #   %i  iconname (including its path) +    #   %I  iconname (without its path) +    #   %p  progress value if set ([  0%] to [100%]) or nothing +    #   %n  progress value if set without any extra characters +    #   %%  Literal % +    format = "<b>%s</b>\n%b" +    alignment = left +    vertical_alignment = top +    show_age_threshold = 60 +    word_wrap = yes +    ellipsize = middle +    ignore_newline = no +    stack_duplicates = true +    hide_duplicate_count = false +    show_indicators = yes + +    ### Icons ### +    icon_position = left +    min_icon_size = 0 +    max_icon_size = 128 +    icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + +    ### History ### +    sticky_history = yes +    history_length = 20 + +    ### Misc/Advanced ### +    browser = /usr/bin/firefox -new-tab +    always_run_script = true +    title = Dunst +    class = Dunst +    startup_notification = false +    verbosity = mesg +    corner_radius = 0 +    ignore_dbusclose = false + +    ### Legacy +    force_xinerama = false + +    ### mouse +    mouse_left_click = do_action +    mouse_middle_click = close_all +    mouse_right_click = close_current + +[experimental] +    per_monitor_dpi = false + +[urgency_low] +    background = "#121213" +    foreground = "#de9dac" +    timeout = 10 + +[urgency_normal] +    background = "#121213" +    foreground = "#f9ece8" +    timeout = 10 + +[urgency_critical] +    background = "#de9dac" +    foreground = "#121213" +    frame_color = "#de9dac" +    timeout = 0 + +# vim: ft=cfg |