diff options
Diffstat (limited to '.config/herbstluftwm')
-rwxr-xr-x | .config/herbstluftwm/autostart | 7 | ||||
-rwxr-xr-x | .config/herbstluftwm/config_vars | 17 |
2 files changed, 22 insertions, 2 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 diff --git a/.config/herbstluftwm/config_vars b/.config/herbstluftwm/config_vars index 4704733..409d586 100755 --- a/.config/herbstluftwm/config_vars +++ b/.config/herbstluftwm/config_vars @@ -1,8 +1,23 @@ #!/bin/bash +## arch blue +#bg_normal='#333333' +#fg_normal='#efefef' +#bg_focus='#00aad4' +#fg_focus='#efefef' +#bg_urgent='#ff4070' +#fg_urgent='#efefef' +# +#fg_grey='#ababab' +#fg_red='#ff6699' +#fg_green='#d5f85f' +#fg_yellow='#ffa466' +#fg_blue='#00aad4' + +## section 9 bg_normal='#333333' fg_normal='#efefef' -bg_focus='#00aad4' +bg_focus='#714BA7' fg_focus='#efefef' bg_urgent='#ff4070' fg_urgent='#efefef' |