love Cal, call a script to use it in my .bashrc to show current date, user, day/time, logins and filesystem status.<p><pre><code> clear
cal
echo "Hey \033[1m$USER\033[0m it's \033[1m`date '+%A %d %B @ %T'`\033[0m" |
tr '[A-Z]' '[a-z]'
echo "logins:\c" ; who | wc -l
df -h</code></pre>