mirror of
https://github.com/vale981/spectrwm
synced 2025-03-05 09:51:38 -05:00
Fix bug in baraction.sh that causes bar text to flicker every 20s.
This commit is contained in:
parent
ae2989db90
commit
9e034db344
1 changed files with 2 additions and 2 deletions
|
@ -92,7 +92,7 @@ while :; do
|
|||
if [ $(( ${I} % 1 )) -eq 0 ]; then
|
||||
APM_DATA=`/usr/sbin/apm -alb`
|
||||
fi
|
||||
if [ $I -gt 2 ]; then
|
||||
if [ $I -ge 2 ]; then
|
||||
# print_date
|
||||
print_mem $MEM
|
||||
print_cpu $REPLY
|
||||
|
@ -100,6 +100,6 @@ while :; do
|
|||
print_apm $APM_DATA
|
||||
echo ""
|
||||
fi
|
||||
I=$(( ${I} + 1 ));
|
||||
I=$(( ( ${I} + 1 ) % 22 ));
|
||||
done
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue