diff options
author | katherine <shmibs@shmibbles.me> | 2016-02-06 16:29:12 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-02-06 16:29:12 -0700 |
commit | 699e1904bbf22a40fdba34f53472ca773d7041fb (patch) | |
tree | ae6b78e9898b7d58230ff8d1b6f793bc55d30edf /.config/herbstluftwm/switcher.sh | |
parent | 3d59966f4c5d9dfb7c0c40f278a412b0ec22fbd3 (diff) | |
download | dotfiles-699e1904bbf22a40fdba34f53472ca773d7041fb.tar.gz |
unify theming
Diffstat (limited to '.config/herbstluftwm/switcher.sh')
-rwxr-xr-x | .config/herbstluftwm/switcher.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/herbstluftwm/switcher.sh b/.config/herbstluftwm/switcher.sh index b37ce9e..5430a80 100755 --- a/.config/herbstluftwm/switcher.sh +++ b/.config/herbstluftwm/switcher.sh @@ -14,8 +14,8 @@ while read -rA line; do fi done < <(wmctrl -l) -echo -e "$lines" | nl -w 2 -s ") " | dmenu -fn $efont -i -h $bheight \ - -nb $bg_normal -nf $fg_normal -sb $bg_focus -sf $fg_focus \ +echo -e "$lines" | nl -w 2 -s ") " | dmenu -fn "${bfont}:size=${bfont_size}" -i -h "$bheight" \ + -nb "$bg_normal" -nf "$fg_normal" -sb "$bg_focus" -sf "$fg_focus" \ -p "Select:" -l 40 | cut -d ')' -f 1 | {read choice} herbstclient jumpto "${nums[$choice]}" |