123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- [global]
- ### Display ###
-
- monitor = 0
- follow = mouse
- geometry = "300x5-3+32"
- indicate_hidden = yes
- shrink = no
- transparency = 0
- notification_height = 0
- separator_height = 2
- padding = 8
- horizontal_padding = 8
- frame_width = 2
- frame_color = "<{color.fg}>"
- separator_color = frame
- sort = yes
- idle_threshold = 120
-
- ### Text ###
-
- font = Sarasa UI J 9
- 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
- # Markup is allowed
- format = "<b>%s</b>\n%b"
- alignment = left
- show_age_threshold = 60
- word_wrap = yes
- ignore_newline = no
- stack_duplicates = true
- hide_duplicate_count = false
- show_indicators = yes
-
- ### Icons ###
-
- icon_position = left
- max_icon_size = 32
- icon_path = <{$HOME}>/.icons/Paper/32x32/status/:<{$HOME}>/.icons/Paper/32x32/devices/:<{$HOME}>/.icons/Paper/32x32/apps/:<{$HOME}>/.icons/Paper/32x32/actions
-
- ### History ###
-
- sticky_history = yes
- history_length = 20
-
- ### Misc/Advanced ###
-
- dmenu = /usr/bin/rofi -dmenu -p dunst:
- browser = /usr/bin/firefox
- always_run_script = true
- title = Dunst
- class = Dunst
- startup_notification = false
-
- ### Legacy
-
- force_xinerama = false
-
- [experimental]
- per_monitor_dpi = false
-
- [shortcuts]
- close = ctrl+space
- close_all = ctrl+shift+space
- history = ctrl+shift+grave
- context = ctrl+shift+period
-
- [urgency_low]
- background = "<{color.bg}>"
- foreground = "<{color.fg}>"
- timeout = 10
- #icon = /path/to/icon
-
- [urgency_normal]
- background = "<{color.bg}>"
- foreground = "<{color.fg}>"
- timeout = 10
- #icon = /path/to/icon
-
- [urgency_critical]
- background = ""
- foreground = "<{color.fg}>"
- frame_color = "<{color.fg}>"
- timeout = 0
- #icon = /path/to/icon
-
- # Every section that isn't one of the above is interpreted as a rules to
- # override settings for certain messages.
- # Messages can be matched by "appname", "summary", "body", "icon", "category",
- # "msg_urgency" and you can override the "timeout", "urgency", "foreground",
- # "background", "new_icon" and "format".
- # Shell-like globbing will get expanded.
- #
- # SCRIPTING
- # You can specify a script that gets run when the rule matches by
- # setting the "script" option.
- # The script will be called as follows:
- # script appname summary body icon urgency
- # where urgency can be "LOW", "NORMAL" or "CRITICAL".
- #
- # NOTE: if you don't want a notification to be displayed, set the format
- # to "".
- # NOTE: It might be helpful to run dunst -print in a terminal in order
- # to find fitting options for rules.
-
- #[espeak]
- # summary = "*"
- # script = dunst_espeak.sh
-
- #[script-test]
- # summary = "*script*"
- # script = dunst_test.sh
-
- #[ignore]
- # # This notification will not be displayed
- # summary = "foobar"
- # format = ""
-
- #[history-ignore]
- # # This notification will not be saved in history
- # summary = "foobar"
- # history_ignore = yes
|