diff options
author | katherine <shmibs@shmibbles.me> | 2016-01-31 20:32:50 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-01-31 20:32:50 -0700 |
commit | 13967e33fbaf7d6404b4c311394747e31279f1d4 (patch) | |
tree | 36c6e18b158ea63e7b6f218221fbbe3497b9de44 | |
parent | 6d1161e535805a6296573d829f743ec1371ab936 (diff) | |
download | dotfiles-13967e33fbaf7d6404b4c311394747e31279f1d4.tar.gz |
winlist spacing
-rwxr-xr-x | .config/herbstluftwm/panel.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.config/herbstluftwm/panel.sh b/.config/herbstluftwm/panel.sh index 1351502..7d21cd0 100755 --- a/.config/herbstluftwm/panel.sh +++ b/.config/herbstluftwm/panel.sh @@ -80,13 +80,14 @@ update_winlist() { do # is it focussed? if [[ $((16#${line[0]})) -eq $((16#$focus_id)) ]]; then - echo -n " %{B${bg_focus} F${fg_focus}} " + echo -n "%{B${bg_focus} F${fg_focus}} " else - echo -n " %{B${bg_normal} F${fg_normal}} " + echo -n "%{B${bg_normal} F${fg_normal}} " fi echo -n "${line[@]:3}" | sed -r 's/(.{60}).*/\1\.\.\./' + echo -n " " done - echo -n " %{B${bg_normal} F${fg_normal}}" + echo -n "%{B${bg_normal} F${fg_normal}}" } update_date() { |