Advertisement
Guest User

dunstrc

a guest
Nov 5th, 2022
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. [global]
  2. # Display
  3. monitor = 0
  4. follow = none
  5. width = 300
  6. height = 700
  7. origin = top-right
  8. offset = 32x32
  9. scale = 0
  10. notification_limit = 5
  11. progress_bar = true
  12. progress_bar_height = 5
  13. progress_bar_frame_width = 1
  14. progress_bar_min_width = 150
  15. progress_bar_max_width = 300
  16. indicate_hidden = yes
  17. shrink = no
  18. transparency = 10
  19. notification_height = 0
  20. separator_height = 1
  21. padding = 10
  22. horizontal_padding = 15
  23. text_icon_padding = 0
  24. frame_width = 1
  25. separator_color = auto
  26. sort = yes
  27. idle_threshold = 120
  28. fullscreen = pushback
  29.  
  30. # Text
  31. font = Verdana 7
  32. line_height = 0
  33. markup = full
  34. format = "<b>%s</b>\n\n%b"
  35. alignment = left
  36. vertical_alignment = top
  37. show_age_threshold = 60
  38. word_wrap = yes
  39. ellipsize = middle
  40. ignore_newline = no
  41. stack_duplicates = true
  42. hide_duplicate_count = false
  43. show_indicators = yes
  44.  
  45. # Icons
  46. enable_recursive_icon_lookup = true
  47. icon_theme = "Papirus-Light"
  48. icon_position = left
  49. min_icon_size = 24
  50. max_icon_size = 32
  51.  
  52. # History
  53. sticky_history = yes
  54. history_length = 100
  55.  
  56. # Misc/Advanced
  57. dmenu = /usr/bin/dmenu -p dunst:
  58. browser = /usr/bin/xdg-open
  59. always_run_script = true
  60. title = Dunst
  61. class = Dunst
  62. startup_notification = false
  63. verbosity = mesg
  64. corner_radius = 7
  65. ignore_dbusclose = false
  66.  
  67. # Legacy
  68. force_xinerama = false
  69.  
  70. # mouse
  71. mouse_left_click = close_current
  72. mouse_middle_click = do_action, close_current
  73. mouse_right_click = close_all
  74.  
  75. [urgency_low]
  76. background = "#cfcfc9"
  77. foreground = "#101820"
  78. frame_color = "#cfcfc9"
  79. timeout = 5
  80.  
  81. [urgency_normal]
  82. background = "#cfcfc9"
  83. foreground = "#101820"
  84. frame_color = "#cfcfc9"
  85. timeout = 10
  86.  
  87. [urgency_critical]
  88. background = "#870400"
  89. foreground = "#ffffff"
  90. frame_color = "#d30600"
  91. timeout = 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement