X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=baraction.sh;h=77c7454a99adfcf7499f6ffb00e296574b57e2c7;hb=0063e6f13bdae97081d19f49d6ace4e41b8901cf;hp=e87b93da5d0a816a193d22733fd5d5ebde4cabc5;hpb=e83f3b790887174fe8b8fd6b3c98172b59ff9305;p=spectrwm.git diff --git a/baraction.sh b/baraction.sh index e87b93d..77c7454 100644 --- a/baraction.sh +++ b/baraction.sh @@ -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