exarkantara
Desktop 5/31
Since people have a tendency to ask, the commands I am using for my geektool displays are:
Upper left: ps -cm -U Usernam | awk '/:/ && $5!~/Dashboard/'
Upper middle: netstat -ab -f inet | grep -i established | sort +4
Middle left: Show file: /Library/Logs/Console/501/console.log
Middle Right: Show file: /private/var/log/system.log
Lower: ifconfig | awk '/flags=|media|inet / {if (substr($2, 1, 6) == "flags=") printf("\n%s ", $1);
else if ($1 == "inet") printf("%s ", $2);
else if ($1 == "media:") printf(substr($0, 9))}' | awk '$1 ~ /^en/'
Lowest: uptime | awk '{printf "up : " $3 " " $4 " " $5 " " }'; top -l 1 | awk '/PhysMem/ {printf "RAM : " $8 ", " }' ; top -l 2 | awk '/CPU usage/ && NR > 5 {print $6, $7=":", $8, $9="user", $10, $11="sys", $12, $13}'
Desktop 5/31
Since people have a tendency to ask, the commands I am using for my geektool displays are:
Upper left: ps -cm -U Usernam | awk '/:/ && $5!~/Dashboard/'
Upper middle: netstat -ab -f inet | grep -i established | sort +4
Middle left: Show file: /Library/Logs/Console/501/console.log
Middle Right: Show file: /private/var/log/system.log
Lower: ifconfig | awk '/flags=|media|inet / {if (substr($2, 1, 6) == "flags=") printf("\n%s ", $1);
else if ($1 == "inet") printf("%s ", $2);
else if ($1 == "media:") printf(substr($0, 9))}' | awk '$1 ~ /^en/'
Lowest: uptime | awk '{printf "up : " $3 " " $4 " " $5 " " }'; top -l 1 | awk '/PhysMem/ {printf "RAM : " $8 ", " }' ; top -l 2 | awk '/CPU usage/ && NR > 5 {print $6, $7=":", $8, $9="user", $10, $11="sys", $12, $13}'