Author: Kyle Fuller <kyle@fuller.li> 2020-08-25 18:51:32 +0100 +0100
Committer: Kyle Fuller <kyle@fuller.li> 2020-08-25 18:51:32 +0100 +0100
Commit: 2688aae487eaf27f03312f861cb64c3ab7e93e14
Parent: 92a247df4eee7e2f3b73e48884bf8f03b155d042
feat: add dunst config for notifications
diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc
index 8ce79f6d81cf17a7c189ff5859b5b811ec1ae837..cd42be50d801632aa6e7721dd92efb4abb20698d 100755
--- a/.config/bspwm/bspwmrc
+++ b/.config/bspwm/bspwmrc
@@ -2,6 +2,7 @@ #!/usr/bin/env sh
pgrep -x sxhkd > /dev/null || sxhkd &
pgrep -x picom > /dev/null || picom -b
+pgrep -x dunst > /dev/null || dunst &
bspc monitor -d I II III IV V VI VII VIII IX X
@@ -11,3 +12,6 @@
bspc config split_ratio 0.50
bspc config borderless_monocle true
bspc config gapless_monocle true
+
+bspc config normal_border_color "#111111"
+bspc config focused_border_color "#919191"
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
new file mode 100644
index 0000000000000000000000000000000000000000..faced773380ca4af021250633d771bc69497717f
--- /dev/null
+++ b/.config/dunst/dunstrc
@@ -0,0 +1,30 @@
+[global]
+font = Source Code Pro 12
+geometry = "400x3-24+24"
+shrink = no
+transparency = 5
+line_height = 0
+padding = 8
+horizontal_padding = 8
+separator_height = 5
+allow_markup = yes
+format = "<b>%s</b>\n%b\n%p"
+
+# sort by urgency
+sort = yes
+
+[frame]
+width = 0
+color = "#ffa460"
+
+[urgency_critical]
+background = "#464d91"
+foreground = "#111111"
+
+[urgency_normal]
+background = "#111111"
+foreground = "#dedede"
+
+[urgency_low]
+background = "#111111"
+foreground = "#dedede"