JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix bug in baraction.sh that causes bar text to flicker every 20s.
authorJean-Philippe Ouellet <jean-philippe@ouellet.biz>
Thu, 19 Jun 2014 05:08:03 +0000 (01:08 -0400)
committerReginald Kennedy <rk@rejii.com>
Thu, 7 Aug 2014 22:35:44 +0000 (06:35 +0800)
baraction.sh

index e87b93d..77c7454 100644 (file)
@@ -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