commit 229e3761315f474e8ffa631de43627a37f2884d9 Author: w12 Date: Fri Aug 23 16:41:29 2024 +0200 Dateien nach "/" hochladen diff --git a/Screenshot 2024-08-23 163840.png b/Screenshot 2024-08-23 163840.png new file mode 100644 index 0000000..cbadd18 Binary files /dev/null and b/Screenshot 2024-08-23 163840.png differ diff --git a/ris-header.sh b/ris-header.sh new file mode 100644 index 0000000..15cd038 --- /dev/null +++ b/ris-header.sh @@ -0,0 +1,25 @@ +#!/bin/bash +[ -r /etc/default/ris-header ] && . /etc/default/ris-header + +upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)" +secs=$((${upSeconds}%60)) +mins=$((${upSeconds}/60%60)) +hours=$((${upSeconds}/3600%24)) +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 2) + .~~. .~~. `echo "RISuniverse by w12"` + '. \ ' ' / .' `date +"%A, %e %B %Y, %R"`$(tput setaf 1) + .~ .~~~..~. + : .~.'~'.~. : Uptime.............: ${UPTIME} + ~ ( R )I( S ) ~ Memory.............: `cat /proc/meminfo | grep MemFree | awk {'print $2'}`kB (Free) / `cat /proc/meminfo | grep MemTotal | awk {'print $2'}`kB (Total) +( : '~'.~.'~' : ) Load Averages......: ${one}, ${five}, ${fifteen} (1, 5, 15 min) + ~ .~ (w12) ~. ~ Running Processes..: `ps ax | wc -l | tr -d " "` + ( : '~' : ) IP Addresses.......: `ip a | grep glo | awk '{print $2}' | head -1 | cut -f1 -d/` and `wget -q -O - http://icanhazip.com/ | tail` + '~ .~~~. ~' + '~' +$(tput sgr0)"