diff options
| author | Marc Vertes <mvertes@free.fr> | 2023-03-24 16:27:39 +0000 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2023-03-24 16:27:39 +0000 |
| commit | 8d996cb069e3534ec4fe8b78b32547d631c4c805 (patch) | |
| tree | 445ee8ce11cd2233f817cb9b44674cbba8f0965a /bin | |
| parent | 8a0058c04f9453a3e3db8c186a550aa10f6c5909 (diff) | |
update
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/status2 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bin/status2 b/bin/status2 new file mode 100755 index 0000000..f73bc87 --- /dev/null +++ b/bin/status2 @@ -0,0 +1,27 @@ +#!/bin/sh + +ip() { + while read -r w1 w2 w3; do + [ $w1 = /32 ] && [ $w2 = host ] && [ $ip != 127.0.0.1 ] && break + ip=$w2 + done < /proc/net/fib_trie +} + +power() { + while read -r line; do + case $line in POWER_SUPPLY_CAPACITY*) power=${line#*=}% && break;; esac + done < /sys/class/power_supply/macsmc-battery/uevent +} + +status() { + power + ip + sound="$(pamixer --get-volume-human)" + clock="$(date +'%a %d %b %H:%M')" +} + +while true; do + status && echo "$ip , power $power , sound $sound , $clock" + sleep 17 +done | +root-tail -g '800x24-80-0' -fn '-Sony-*-*-*-*-*-24-*-*-*-*-*-*-*' --color grey70 - |
