added dunst.sh script

This commit is contained in:
Pecha 2019-10-11 16:51:44 +10:00
parent 5326b38f5f
commit e3b3ffd2e4

21
dunst.sh Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env bash
#
# 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