Wallpaper : W - GeekTop 1 http://www.flickr.com/photos/woodztream/3571177647/ Font : Comfortaa Regular 14pt http://aajohan.deviantart.com/art/Comfortaa-font-105395949 iTunes Controler : Bowtie http://bowtieapp.com/ Bowtie Theme : TurnTable Bowtie http://neodesktop.deviantart.com/art/TurnTable-Bowtie-119254246 GeekTool : Shell Command # "Year" to "RAM Usage" printf "text" # Year date "+%Y" # Month date "+%B" # Day date "+%d" # Week date "+%A" # Hour date "+%H" # Min date "+%M" # Sec date "+%S" # CPU Usage top -l 2 | awk '/CPU usage/ && NR > 5 {print $8, $9="user "}' ; top -l 2 | awk '/CPU usage/ && NR > 5 {print $10, $11="sys "}' ; top -l 2 | awk '/CPU usage/ && NR > 5 {print $12, $13}' # RAM Usage top -l 1 | awk '/PhysMem/ {print $8, $9}' | sed -e 's/.$//g' ; top -l 1 | awk '/PhysMem/ {print $10, $11}' | sed -e 's/.$//g'