X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=baraction.sh;h=77c7454a99adfcf7499f6ffb00e296574b57e2c7;hb=refs%2Fheads%2Fjason;hp=c3ac272a898f9acbc7aeaa4694e7983fc00b3c28;hpb=8eb6cfee6344a0e61511f1eb2e36a91c30854e1e;p=spectrwm.git diff --git a/baraction.sh b/baraction.sh index c3ac272..77c7454 100644 --- a/baraction.sh +++ b/baraction.sh @@ -4,7 +4,7 @@ print_date() { # The date is printed to the status bar by default. # To print the date through this script, set clock_enabled to 0 - # in scrotwm.conf. Uncomment "print_date" below. + # in spectrwm.conf. Uncomment "print_date" below. FORMAT="%a %b %d %R %Z %Y" DATE=`date "+${FORMAT}"` echo -n "${DATE} " @@ -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