diff options
author | shmibs <shmibs@gmail.com> | 2014-07-16 21:58:49 -0700 |
---|---|---|
committer | shmibs <shmibs@gmail.com> | 2014-07-16 21:58:49 -0700 |
commit | e0f2ec8a98ec6d3adec28e737c515c9dab550e4b (patch) | |
tree | 84808b044c43d54e73d9112b19786918f889624d /.config/herbstluftwm/autostart | |
parent | 362fdd40156422779f51d5b109ec41164d67b1cf (diff) | |
download | dotfiles-e0f2ec8a98ec6d3adec28e737c515c9dab550e4b.tar.gz |
make dunst pull theme dynamically
i was too lazy to bother trying
dunst --help, apparently
Diffstat (limited to '.config/herbstluftwm/autostart')
-rwxr-xr-x | .config/herbstluftwm/autostart | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.config/herbstluftwm/autostart b/.config/herbstluftwm/autostart index 0a2b1c7..787b821 100755 --- a/.config/herbstluftwm/autostart +++ b/.config/herbstluftwm/autostart @@ -197,5 +197,10 @@ done # add a tray tray=~/.config/herbstluftwm/tray.sh if [ -x "$tray" ]; then - "$tray" + "$tray" & fi + +# run dunst with theme colours +dunst -lb $bg_normal -nb $bg_normal -cb $bg_focus \ + -lf $fg_normal -nf $fg_normal -cf $fg_focus \ + -frame_color $bg_focus |