dotfiles/.local/bin/bar

26 lines
559 B
Plaintext
Raw Normal View History

2023-07-06 01:58:18 +02:00
#!/usr/bin/env sh
2022-12-20 12:02:52 +01:00
2023-07-06 01:58:18 +02:00
sleep=1
2023-02-08 01:42:20 +01:00
used() {
used=$(vmstat | awk 'END {printf $3}' | tr -d "M")
full=$(expr $(sysctl -n hw.usermem) / 1048576)
2023-07-07 16:45:46 +02:00
echo "$used/$full"
2023-02-08 01:42:20 +01:00
}
2023-07-06 01:58:18 +02:00
chkinet() {
2024-02-04 02:44:04 +01:00
#int=$(ifconfig | grep -E "UP,BROADCAST,RUNNING" | cut -f1 -d ":")
int=iwx0
out=$(ifconfig "$int" | grep "status" | cut -f2 -d ":" | tr -d " ")
2023-07-06 01:58:18 +02:00
case "$out" in
2024-05-21 17:11:52 +02:00
"active") echo "up"; ;;
"nonetwork") echo "down"; ;;
2023-07-06 01:58:18 +02:00
esac
}
2022-10-02 00:16:21 +02:00
while true; do
2024-07-25 17:10:48 +02:00
echo "%{c}%{F#6d878d}%{T2}λ%{T1}%{F#ffebeb} $(hostname) | $(date "+%H:%M %Y/%m/%d") - $(chkinet) - $(used) - $(apm -l)%"
2023-07-06 01:58:18 +02:00
sleep $sleep
2022-10-02 00:16:21 +02:00
done