summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorSaumit Dinesan <79687674+justsaumit@users.noreply.github.com>2022-03-01 14:08:36 +0000
committerGitHub <noreply@github.com>2022-03-01 14:08:36 +0000
commita1b8d31d399217016cd2c8b0c2a323eee79feac7 (patch)
treeda573622c01b61afbd2396fc3d17e064594b1cff /.config
parentb7c8da835bb251862a3b2b23458bd2f4c5f58f5f (diff)
Add files via upload
Diffstat (limited to '.config')
-rw-r--r--.config/wal/templates/dunstrc83
1 files changed, 83 insertions, 0 deletions
diff --git a/.config/wal/templates/dunstrc b/.config/wal/templates/dunstrc
new file mode 100644
index 0000000..0096774
--- /dev/null
+++ b/.config/wal/templates/dunstrc
@@ -0,0 +1,83 @@
+[global]
+ monitor = 0
+ follow = mouse
+ #geometry = "x0x0-30+20"
+ width = 300
+ height = 300
+ origin = top-right
+ offset = 13x40
+ scale = 0
+ max_icon_size=96
+ indicate_hidden = yes
+ shrink = yes
+ transparency = 10
+ notification_height = 0
+
+ # Show multiple notifications in the same box
+ separator_height = 2
+
+ # Add vertical padding to the inside of the notification
+ padding = 0
+ # Add horizontal padding for when the text gets long enough
+ horizontal_padding = 8
+
+ # The frame color and width of the notification
+ frame_color = "{color4}"
+ frame_width = 3
+
+ # How long a user needs to be idle for sticky notifications
+ idle_threshold = 120
+
+ # Font and typography settings
+ font = Monospace 14
+ alignment = leftr
+ word_wrap = yes
+
+ # Format for how notifications will be displayed
+ # Usage: `notify-send 'Title' 'Summary'`
+ format = "<b>%s</b>: %b"
+
+ # Allow some HTML tags like <i> and <u> in notifications
+ markup = full
+ show_age_threshold = 60
+ ellipsize = middle
+ ignore_newline = no
+ stack_duplicates = true
+ hide_duplicate_count = true
+ show_indicators = yes
+ icon_position = left
+ max_icon_size = 40
+ icon_path = /usr/share/icons/Adwaita/512x512/devices/
+ sticky_history = yes
+ history_length = 20
+ dmenu = /usr/bin/dmenu -p dunst:
+ browser = /usr/bin/firefox -new-tab
+
+# Always run rule-defined scripts, even if the notification is suppressed
+ always_run_script = true
+
+ title = Dunst
+ class = Dunst
+ startup_notification = false
+ force_xinerama = false
+
+
+# These are the keybindings used to control dunst notifications
+ close = ctrl+space
+ close_all = ctrl+shift+space
+ history = ctrl+grave
+
+# Set the background and foreground (text) color for all notifications
+[urgency_low]
+ background = "{background}"
+ foreground = "{foreground}"
+
+[urgency_normal]
+ background = "{foreground}"
+ foreground = "{background}"
+
+[urgency_critical]
+ background = "{foreground}"
+ foreground = "{background}"
+
+# vim:ft=cfg