Better commands for battery and network

This commit is contained in:
Mahesh Asolkar 2021-01-22 20:14:40 -08:00
parent 0c694f8b09
commit b9e63735a3
1 changed files with 3 additions and 2 deletions

View File

@ -4,8 +4,9 @@
VOL=$(amixer get Master | tail -1 | sed 's/.*\[\([0-9]*%\)\].*/\1/')
LOCALTIME=$(date +"%Y %h %d %I:%M%p %Z")
IP=$(for i in `ip r`; do echo $i; done | grep -A 1 src | tail -n1)
#IP=$(for i in `ip r`; do echo $i; done | grep -A 1 src | tail -n1)
IP=$(getent ahosts google.com | head -n 1 | awk '{print $1}' | xargs ip route get | head -n 1 | awk '{print $7}')
WEATHER=$(weather fips4105192520 | grep Tempera | awk '{print $2}')
BAT=$(acpi -b | awk '{ print $4 " " $5 }' | tr -d ',')
BAT=$(acpi -b | awk '{ print " " $5 }' | tr -d ',')
xsetroot -name " 🔊 $VOL | $IP | 🔋 $BAT | ${WEATHER}°F | $LOCALTIME"