summaryrefslogtreecommitdiff
path: root/dunst
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2026-02-01 15:00:19 +0100
committermjkwiatkowski <mati.rewa@gmail.com>2026-02-01 15:00:19 +0100
commit91800bc9f737caa21868bc89fa14ed54d4def710 (patch)
tree6d7d6dc1a20aa01dc68cf571fe30cea58d1d95b1 /dunst
Initial commit
Diffstat (limited to 'dunst')
-rw-r--r--dunst/dunstrc97
1 files changed, 97 insertions, 0 deletions
diff --git a/dunst/dunstrc b/dunst/dunstrc
new file mode 100644
index 0000000..d26e117
--- /dev/null
+++ b/dunst/dunstrc
@@ -0,0 +1,97 @@
+[global]
+
+ ### Shape ###
+
+ follow = mouse
+ geometry = "300x30-5+60"
+ indicate_hidden = yes
+ shrink = no
+ transparency = 0
+ notification_height = 0
+ separator_height = 2
+ padding = 8
+ horizontal_padding = 8
+ frame_width = 3
+ frame_color = "#4C4C4C"
+ sort = yes
+ idle_threshold = 0
+
+ ### Text ###
+
+ font = sans-serif 10
+ line-height = 0
+ markup = full
+
+ # Message format:
+ # %a - appname
+ # %s - summary
+ # %b - body
+ # %i - iconname (with path)
+ # %I - iconname (without path)
+ # %p - progress value (if set)
+ # %n - progress value no extra characters
+ # %% - literal %
+ format = "<b>%a</b>\n<i>%s</i>\n%b"
+
+ # Align message text horizontally
+ alignment = center
+
+ # Align message text vertically
+ vertical_alignment = center
+
+ # Show age of message if message is older than x seconds
+ show_age_threshold = -1
+
+ # Split notifications into multiple lines
+ word_wrap = no
+
+ # If message too long, add ellipsize to...
+ ellipsize = middle
+
+ ignore_newline = no
+ stack_duplicates = true
+
+ # Hide number of duplicate notifications
+ hide_duplicate_count = true
+
+ # Show indicatiors for urls and actions
+ show_indicators = no
+
+ # Disable icons
+ icon_position = off
+
+ # Length of history
+ history_length = 20
+
+ # Title of notification
+ title = Dunst
+ class = Dunst
+
+ startup_notification = false
+ verbosity = mesg
+ corner_radius = 0
+ ignore_dbusclose = false
+
+ mouse_left_click = close_current
+
+[shortcuts]
+
+ # Close one notification
+ close = ctrl+space
+
+ # Close all notifications
+ close_all = ctrl+shift+space
+
+[urgency_normal]
+
+ background = "#6b6b6b"
+ foreground = "#ffffff"
+ timeout = 5
+
+[urgency_critical]
+
+ background = "#ffffff"
+ foreground = "#db0101"
+ timeout = 0
+
+