added dunst.sh script
This commit is contained in:
parent
5326b38f5f
commit
e3b3ffd2e4
1 changed files with 21 additions and 0 deletions
21
dunst.sh
Executable file
21
dunst.sh
Executable 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
|
Loading…
Reference in a new issue