2020-08-05 04:57:45 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# t2stats:
|
|
|
|
# this is a simple network/battery status indicator to be used with tint2
|
2020-09-30 03:58:30 +00:00
|
|
|
# copyleft 2020 Derek Stevens <drkste@zoho.com>
|
2020-08-05 04:57:45 +00:00
|
|
|
# MIT License -- do whatever you want
|
|
|
|
|
|
|
|
while true; do
|
|
|
|
# network
|
|
|
|
actives=$(nmcli connection show --active)
|
|
|
|
possiblywifi=$(echo "${actives}" | grep wifi)
|
|
|
|
possiblyeth=$(echo "${actives}" | grep Wired)
|
|
|
|
ORS=" "
|
|
|
|
|
|
|
|
if [ ! -z "${possiblyeth}" ]; then
|
|
|
|
output=wired
|
|
|
|
elif [ ! -z "${possiblywifi}" ]; then
|
2020-10-16 16:09:24 +00:00
|
|
|
output="wifi/$(echo ${possiblywifi} |\
|
|
|
|
awk 'BEGIN { ORS=" " }; {for (i=1; i<=(NF-3);i++) print $i}')"
|
2020-08-05 04:57:45 +00:00
|
|
|
else
|
|
|
|
output=offline
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -n "${output} "
|
|
|
|
|
|
|
|
# battery
|
|
|
|
|
|
|
|
powerlevel=$(cat /sys/class/power_supply/BAT*/capacity)
|
|
|
|
case $powerlevel in
|
2020-09-30 03:58:30 +00:00
|
|
|
0)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-09-30 03:58:30 +00:00
|
|
|
;;
|
2020-08-05 04:57:45 +00:00
|
|
|
1|2|3|4|5|6|7|8|9)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
10|11|12|13|14|15|16|17|18|19)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
20|21|22|23|24|25|26|27|28|29)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
30|31|32|33|34|35|36|37|38|39)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
40|41|42|43|44|45|46|47|48|49)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
50|51|52|53|54|55|56|57|58|59)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
60|61|62|63|64|65|66|67|68|69)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
70|71|72|73|74|75|76|77|78|79)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=" "
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
80|81|82|83|84|85|86|87|88|89)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=""
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
*)
|
2020-10-24 04:02:20 +00:00
|
|
|
meter=""
|
2020-08-05 04:57:45 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
echo "${meter}"
|
|
|
|
|
|
|
|
sleep 10
|
2020-09-30 03:58:30 +00:00
|
|
|
done
|