summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--config/dunst/dunstrc27
2 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a94e08b..78396b3 100644
--- a/Makefile
+++ b/Makefile
@@ -42,6 +42,7 @@ config: $(CONFDIR)
mkdir -p $(CONFDIR)/sites
touch $(ZCACHE)
$(COPY) config/bash/bashrc $(BASHRC)
+ $(COPY) config/dunst $(CONFDIR)
$(COPY) config/lf $(CONFDIR)
$(COPY) config/mimeapps.list $(CONFDIR)
$(COPY) config/mpv $(CONFDIR)
diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc
new file mode 100644
index 0000000..81dba80
--- /dev/null
+++ b/config/dunst/dunstrc
@@ -0,0 +1,27 @@
+[global]
+font = "Liberation Mono 12"
+frame_width = 1
+gap_size = 8
+gaps = true
+offset = 12
+origin = bottom-right
+padding = 12
+separator_color = "auto"
+
+[urgency_low]
+frame_color = "#434C5E" # Polar Night (dim)
+foreground = "#D8DEE9" # Frost white (soft text)
+background = "#2E3440" # Polar Night (dark bg)
+timeout = 5
+
+[urgency_normal]
+frame_color = "#81A1C1" # Frost Blue (accent)
+foreground = "#E5E9F0" # Arctic White (text)
+background = "#3B4252" # Polar Night (slightly lighter bg)
+timeout = 10
+
+[urgency_critical]
+frame_color = "#BF616A" # Aurora Red (error)
+foreground = "#ECEFF4" # Bright Frost (text)
+background = "#3B4252"
+timeout = 0