summaryrefslogtreecommitdiff
path: root/.scripts/reload_dunst
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/reload_dunst')
-rwxr-xr-x.scripts/reload_dunst21
1 files changed, 21 insertions, 0 deletions
diff --git a/.scripts/reload_dunst b/.scripts/reload_dunst
new file mode 100755
index 0000000..525e52a
--- /dev/null
+++ b/.scripts/reload_dunst
@@ -0,0 +1,21 @@
+#!/bin/sh
+#
+# Script to set colors generated by 'wal'
+# https://github.com/dylanaraps/wal
+ # Source generated colors.
+ . "${HOME}/.cache/wal/colors.sh"
+
+ reload_dunst() {
+ pkill dunst
+ dunst \
+ -frame_width 0 \
+ -lb "${color0}" \
+ -nb "${color0}" \
+ -cb "${color0}" \
+ -lf "${color7}" \
+ -bf "${color7}" \
+ -cf "${color7}" \
+ -nf "${color7}" &
+}
+
+reload_dunst