diff options
author | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2016-05-30 19:04:23 +0100 |
---|---|---|
committer | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2016-05-30 19:04:23 +0100 |
commit | 60cb259e103b3e1a8f7c43ed8dd2250137d47578 (patch) | |
tree | 8cbe16ef711de351789b642a08b0f5f9f1672766 /Panel/lemonbar | |
parent | 68650557971bb48232ecc0777e9a789f6ecf8104 (diff) | |
download | dotfiles-60cb259e103b3e1a8f7c43ed8dd2250137d47578.tar.gz dotfiles-60cb259e103b3e1a8f7c43ed8dd2250137d47578.tar.bz2 dotfiles-60cb259e103b3e1a8f7c43ed8dd2250137d47578.zip |
lemonbar speed fix
Diffstat (limited to 'Panel/lemonbar')
-rwxr-xr-x | Panel/lemonbar/panel | 2 | ||||
-rwxr-xr-x | Panel/lemonbar/windows | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Panel/lemonbar/panel b/Panel/lemonbar/panel index 0477467..6926b75 100755 --- a/Panel/lemonbar/panel +++ b/Panel/lemonbar/panel @@ -21,7 +21,7 @@ clock -i 60 -sf 'Z%d %a %H:%M' > "$PANEL_FIFO" & unbuffer alsactl monitor | grep --line-buffered 'Headphone Jack' | while read line; do volume -f 'V%i' > $PANEL_FIFO;done & -source ./panel_colors +. ./panel_colors cat "$PANEL_FIFO" | ./panel_bar | lemonbar -f "$FONT_FONT" -f "$ICON_FONT" -g x$PANEL_HEIGHT -F "$COLOR11" -B "$COLOR0" -u 3 & diff --git a/Panel/lemonbar/windows b/Panel/lemonbar/windows index e5ae808..b37270f 100755 --- a/Panel/lemonbar/windows +++ b/Panel/lemonbar/windows @@ -1,3 +1,3 @@ #!/bin/bash echo 'Wclear' > /tmp/panel-fifo -ratpoison -c 'windows %s%n %t' | while read line;do echo "${line}" | cut -c -25 > /tmp/panel-fifo && sleep 0.004;done +ratpoison -c 'windows %s%n %t' | while read line;do echo "${line}" | cut -c -25 > /tmp/panel-fifo;done |