X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=baraction.sh;h=e87b93da5d0a816a193d22733fd5d5ebde4cabc5;hb=157c555b7725e6977569c5206313240d3d448933;hp=745521959dc02f5d6c00e8267176c1bb0e74fad9;hpb=fd802e8f9431f511ed6f9f2d822b64b07a2a4bc2;p=spectrwm.git diff --git a/baraction.sh b/baraction.sh index 7455219..e87b93d 100644 --- a/baraction.sh +++ b/baraction.sh @@ -1,18 +1,17 @@ #!/bin/sh # -# $scrotwm$ 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} " } print_mem() { - MEM=`/usr/bin/top | grep Free: | cut -d " " -f7` + MEM=`/usr/bin/top | grep Free: | cut -d " " -f6` echo -n "Free mem: $MEM " }