diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-03-12 19:54:51 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-03-12 19:54:51 +0530 |
commit | 54b772cae06eb25adf33297e35234f33ded81a7b (patch) | |
tree | f287ee48faa8013e4a8f0ee764a6d3cd850bb24d /.scripts/reload_dunst | |
parent | 7197e45d94dbcf4877d585fff8e634896876ae83 (diff) |
neovim addition
Diffstat (limited to '.scripts/reload_dunst')
-rwxr-xr-x | .scripts/reload_dunst | 21 |
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 |