forked from neurobionics/neurobionicspi
-
Notifications
You must be signed in to change notification settings - Fork 48
/
motd
38 lines (29 loc) · 2.27 KB
/
motd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
clear
echo "$(tput bold)$(tput setaf 3)"
echo "░█░█░█▀█░▀█▀░█░█░░░░█▀█░█▀▀░░░█▄█░▀█▀░█▀▀░█░█░▀█▀░█▀▀░█▀█░█▀█"
echo "░█░█░█░█░░█░░▀▄▀░░░░█░█░█▀▀░░░█░█░░█░░█░░░█▀█░░█░░█░█░█▀█░█░█"
echo "░▀▀▀░▀░▀░▀▀▀░░▀░▀░░░▀▀▀░▀░░░░░▀░▀░▀▀▀░▀▀▀░▀░▀░▀▀▀░▀▀▀░▀░▀░▀░▀"
echo "$(tput setaf 6)"
echo " ██████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗ "
echo " ██╔══██╗██╔═══██╗██╔══██╗╚════██╗███║███║ "
echo " ██████╔╝██║ ██║██████╔╝ █████╔╝╚██║╚██║ "
echo " ██╔══██╗██║ ██║██╔══██╗ ╚═══██╗ ██║ ██║ "
echo " ██║ ██║╚██████╔╝██████╔╝██████╔╝ ██║ ██║ "
echo " ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ "
let upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)"
let secs=$((${upSeconds}%60))
let mins=$((${upSeconds}/60%60))
let hours=$((${upSeconds}/3600%24))
let days=$((${upSeconds}/86400))
UPTIME=`printf "%d days, %02dh%02dm%02ds" "$days" "$hours" "$mins" "$secs"`
# get the load averages
read one five fifteen rest < /proc/loadavg
echo "$(tput setaf 3)
`date +"%A, %e %B %Y, %r"`
`uname -srmo`
$(tput sgr0)- Uptime.............: ${UPTIME}
$(tput sgr0)- Memory.............: `free | grep Mem | awk '{print $3/1024}'` MB (Used) / `cat /proc/meminfo | grep MemTotal | awk {'print $2/1024'}` MB (Total)
$(tput sgr0)- Load Averages......: ${one}, ${five}, ${fifteen} (1, 5, 15 min)
$(tput sgr0)- Running Processes..: `ps ax | wc -l | tr -d " "`
$(tput sgr0)- IP Address.........: `hostname -I | /usr/bin/cut -d " " -f 1`
$(tput sgr0)"