You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

263 lines
7.3KB

  1. [global]
  2. font = FontAwesome 18
  3. # Allow a small subset of html markup:
  4. # <b>bold</b>
  5. # <i>italic</i>
  6. # <s>strikethrough</s>
  7. # <u>underline</u>
  8. #
  9. # For a complete reference see
  10. # <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>.
  11. # If markup is not allowed, those tags will be stripped out of the
  12. # message.
  13. allow_markup = yes
  14. # The format of the message. Possible variables are:
  15. # %a appname
  16. # %s summary
  17. # %b body
  18. # %i iconname (including its path)
  19. # %I iconname (without its path)
  20. # %p progress value if set ([ 0%] to [100%]) or nothing
  21. # Markup is allowed
  22. format = "%a\n<b>%s</b>\n%b"
  23. # Sort messages by urgency.
  24. sort = no
  25. # Show how many messages are currently hidden (because of geometry).
  26. indicate_hidden = no
  27. # Alignment of message text.
  28. # Possible values are "left", "center" and "right".
  29. alignment = right
  30. # The frequency with wich text that is longer than the notification
  31. # window allows bounces back and forth.
  32. # This option conflicts with "word_wrap".
  33. # Set to 0 to disable.
  34. bounce_freq = 0
  35. # Show age of message if message is older than show_age_threshold
  36. # seconds.
  37. # Set to -1 to disable.
  38. show_age_threshold = -1
  39. # Split notifications into multiple lines if they don't fit into
  40. # geometry.
  41. word_wrap = yes
  42. # Ignore newlines '\n' in notifications.
  43. ignore_newline = no
  44. # The geometry of the window:
  45. # [{width}]x{height}[+/-{x}+/-{y}]
  46. # The geometry of the message window.
  47. # The height is measured in number of notifications everything else
  48. # in pixels. If the width is omitted but the height is given
  49. # ("-geometry x2"), the message window expands over the whole screen
  50. # (dmenu-like). If width is 0, the window expands to the longest
  51. # message displayed. A positive x is measured from the left, a
  52. # negative from the right side of the screen. Y is measured from
  53. # the top and down respectevly.
  54. # The width can be negative. In this case the actual width is the
  55. # screen width minus the width defined in within the geometry option.
  56. # geometry = "400x3+760+420"
  57. geometry = "520x5-10+24"
  58. corner_radius = 10
  59. # Shrink window if it's smaller than the width. Will be ignored if
  60. # width is 0.
  61. shrink = yes
  62. # The transparency of the window. Range: [0; 100].
  63. # This option will only work if a compositing windowmanager is
  64. # present (e.g. xcompmgr, compiz, etc.).
  65. transparency = 30
  66. # Don't remove messages, if the user is idle (no mouse or keyboard input)
  67. # for longer than idle_threshold seconds.
  68. # Set to 0 to disable.
  69. idle_threshold = 0
  70. # Which monitor should the notifications be displayed on.
  71. monitor = 0
  72. # Display notification on focused monitor. Possible modes are:
  73. # mouse: follow mouse pointer
  74. # keyboard: follow window with keyboard focus
  75. # none: don't follow anything
  76. #
  77. # "keyboard" needs a windowmanager that exports the
  78. # _NET_ACTIVE_WINDOW property.
  79. # This should be the case for almost all modern windowmanagers.
  80. #
  81. # If this option is set to mouse or keyboard, the monitor option
  82. # will be ignored.
  83. follow = keyboard
  84. # Should a notification popped up from history be sticky or timeout
  85. # as if it would normally do.
  86. sticky_history = yes
  87. # Maximum amount of notifications kept in history
  88. history_length = 0
  89. # Display indicators for URLs (U) and actions (A).
  90. show_indicators = no
  91. # The height of a single line. If the height is smaller than the
  92. # font height, it will get raised to the font height.
  93. # This adds empty space above and under the text.
  94. line_height = 0
  95. # Draw a line of "separatpr_height" pixel height between two
  96. # notifications.
  97. # Set to 0 to disable.
  98. separator_height = 2
  99. # Padding between text and separator.
  100. padding = 8
  101. # Horizontal padding.
  102. horizontal_padding = 20
  103. # Define a color for the separator.
  104. # possible values are:
  105. # * auto: dunst tries to find a color fitting to the background;
  106. # * foreground: use the same color as the foreground;
  107. # * frame: use the same color as the frame;
  108. # * anything else will be interpreted as a X color.
  109. separator_color = frame
  110. # Print a notification on startup.
  111. # This is mainly for error detection, since dbus (re-)starts dunst
  112. # automatically after a crash.
  113. startup_notification = false
  114. # dmenu path.
  115. dmenu = /usr/bin/dmenu -p dunst:
  116. # Browser for opening urls in context menu.
  117. browser = /usr/bin/firefox -new-tab
  118. # Align icons left/right/off
  119. icon_position = off
  120. # Paths to default icons.
  121. icon_folders = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
  122. [frame]
  123. width = 0
  124. color = "#aaaaaa"
  125. [shortcuts]
  126. # Shortcuts are specified as [modifier+][modifier+]...key
  127. # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
  128. # "mod3" and "mod4" (windows-key).
  129. # Xev might be helpful to find names for keys.
  130. # Close notification.
  131. close = ctrl+space
  132. # Close all notifications.
  133. close_all = ctrl+shift+space
  134. # Redisplay last message(s).
  135. # On the US keyboard layout "grave" is normally above TAB and left
  136. # of "1".
  137. history = ctrl+grave
  138. # Context menu.
  139. context = ctrl+shift+period
  140. [urgency_low]
  141. # IMPORTANT: colors have to be defined in quotation marks.
  142. # Otherwise the "#" and following would be interpreted as a comment.
  143. background = "#222222"
  144. foreground = "#CCCCCC"
  145. timeout = 1
  146. [urgency_normal]
  147. background = "#222222"
  148. foreground = "#CCCCCC"
  149. timeout = 1
  150. [urgency_critical]
  151. background = "#222222"
  152. foreground = "#CCCCCC"
  153. timeout = 0
  154. # Every section that isn't one of the above is interpreted as a rules to
  155. # override settings for certain messages.
  156. # Messages can be matched by "appname", "summary", "body", "icon", "category",
  157. # "msg_urgency" and you can override the "timeout", "urgency", "foreground",
  158. # "background", "new_icon" and "format".
  159. # Shell-like globbing will get expanded.
  160. #
  161. # SCRIPTING
  162. # You can specify a script that gets run when the rule matches by
  163. # setting the "script" option.
  164. # The script will be called as follows:
  165. # script appname summary body icon urgency
  166. # where urgency can be "LOW", "NORMAL" or "CRITICAL".
  167. #
  168. # NOTE: if you don't want a notification to be displayed, set the format
  169. # to "".
  170. # NOTE: It might be helpful to run dunst -print in a terminal in order
  171. # to find fitting options for rules.
  172. [Sound]
  173. appname = "volume"
  174. format = "<b>%s</b>"
  175. [Mu4e]
  176. appname = "Emacs"
  177. format = "<b>%s</b>"
  178. timeout = 0
  179. [Org]
  180. appname = "Emacs"
  181. summary = "Agenda"
  182. timeout = 0
  183. format = "<b>%b</b>"
  184. #[espeak]
  185. # summary = "*"
  186. # script = dunst_espeak.sh
  187. #[script-test]
  188. # summary = "*script*"
  189. # script = dunst_test.sh
  190. #[ignore]
  191. # # This notification will not be displayed
  192. # summary = "foobar"
  193. # format = ""
  194. #[signed_on]
  195. # appname = Pidgin
  196. # summary = "*signed on*"
  197. # urgency = low
  198. #
  199. #[signed_off]
  200. # appname = Pidgin
  201. # summary = *signed off*
  202. # urgency = low
  203. #
  204. #[says]
  205. # appname = Pidgin
  206. # summary = *says*
  207. # urgency = critical
  208. #
  209. #[twitter]
  210. # appname = Pidgin
  211. # summary = *twitter.com*
  212. # urgency = normal
  213. #
  214. # vim: ft=cfg