Advertisement
Bencici

Raspberry Pi MOTD

May 5th, 2013 (edited)
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. let upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)"
  2. let secs=$((${upSeconds}%60))
  3. let mins=$((${upSeconds}/60%60))
  4. let hours=$((${upSeconds}/3600%24))
  5. let days=$((${upSeconds}/86400))
  6. UPTIME=`printf "%d days, %02dh%02dm%02ds" "$days" "$hours" "$mins" "$secs"`
  7.  
  8. # get the load averages
  9. read one five fifteen rest < /proc/loadavg
  10.  
  11. echo "$(tput setaf 2)
  12. .~~. .~~. `date +"%A, %e %B %Y, %r"`
  13. '. \ ' ' / .' `uname -srmo`$(tput setaf 1)
  14. .~ .~~~..~.
  15. : .~.'~'.~. : Uptime.............: ${UPTIME}
  16. ~ ( ) ( ) ~ Memory.............: $((`cat /proc/meminfo | grep MemFree | awk {'print $2'}`/1024))MB (Free) / $((`cat /proc/meminfo | grep MemTotal | awk {'print $2'}`/1024))MB (Total)
  17. ( : '~'.~.'~' : ) Temperature........: `vcgencmd measure_temp | sed "s/temp=//"`
  18. ~ .~ ( ) ~. ~ Running Processes..: `ps ax | wc -l | tr -d " "`
  19. ( : '~' : ) IP Addresses.......: `/sbin/ifconfig | /bin/grep "Bcast:" | /usr/bin/cut -d ":" -f 2 | /usr/bin/cut -d " " -f 1` / `wget -q -O - http://icanhazip.com/ | tail`
  20. '~ .~~~. ~' Weather............: `curl -s "http://rss.accuweather.com/rss/liveweather_rss.asp?metric=1&locCode=EUR|FR|FR001|GRENOBLE|" | sed -n '/Currently:/ s/.*: \(.*\): \([0-9]*\)\([CF]\).*/\2°\3, \1/p'`
  21. '~'
  22. $(tput sgr0)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement