Advertisement
Guest User

Untitled

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