diff options
| author | Marc Vertes <mvertes@free.fr> | 2023-03-11 18:33:55 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2023-03-11 18:33:55 +0100 |
| commit | 1d2e79098900e750c1f0401e43a6a1b0ef26d2d9 (patch) | |
| tree | 2f94e49ef6cdede1cb85d8756c78b47a739ab2a4 /bin | |
| parent | 03fb555b54862c571fd3c4d4b82ee81ca714af9c (diff) | |
improve fvwm config
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..a6233a9 --- /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/BAT0/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 '500x20-80-0' -fn '-*-terminus-bold-r-*-*-14-*-*-*-*-*-*-*' --color grey70 - |
