Better commands for battery and network
This commit is contained in:
parent
0c694f8b09
commit
b9e63735a3
@ -4,8 +4,9 @@
|
|||||||
|
|
||||||
VOL=$(amixer get Master | tail -1 | sed 's/.*\[\([0-9]*%\)\].*/\1/')
|
VOL=$(amixer get Master | tail -1 | sed 's/.*\[\([0-9]*%\)\].*/\1/')
|
||||||
LOCALTIME=$(date +"%Y %h %d %I:%M%p %Z")
|
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}')
|
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"
|
xsetroot -name " 🔊 $VOL | $IP | 🔋 $BAT | ${WEATHER}°F | $LOCALTIME"
|
||||||
|
Loading…
Reference in New Issue
Block a user