diff options
Diffstat (limited to 'sysinfo')
-rwxr-xr-x | sysinfo | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -1,6 +1,16 @@ -#!/bin/sh +#!/bin/zsh +BLUE="\e[1;34m" +NC="\e[0m" + clear cat /etc/motd -inxi -CGINSx -echo -en "${BLUE}Uptime:$NC" ; uptime -pydf +echo +echo -e "${BLUE}Host:${NC} $(hostname)" +echo -e "${BLUE}Uptime:$NC ${${$(uptime)%%,*}##*up }, ${$(</proc/loadavg)% *}" + +if [ -x /usr/bin/fortune ]; then + echo + /usr/bin/fortune -s + echo +fi + |