xinitrc: use more resilient command for battery status
This commit is contained in:
parent
dd1073cd6e
commit
2492b303c1
@ -24,7 +24,7 @@ export XMODIFIERS=@im=fcitx
|
|||||||
while true; do
|
while true; do
|
||||||
DATE=$(date +'%H:%M:%S %a %b %d')
|
DATE=$(date +'%H:%M:%S %a %b %d')
|
||||||
TEMP="$(($(cat /sys/class/thermal/thermal_zone0/temp) / 1000))C"
|
TEMP="$(($(cat /sys/class/thermal/thermal_zone0/temp) / 1000))C"
|
||||||
BAT="$(acpi | cut -f4 -d " " | tr -d ',')"
|
BAT="$(acpi -b | head -n 1 | awk -F'[,:]' '{print $3}' | tr -d '[:space:]')"
|
||||||
KEY="$(xkblayout-state print '%s')"
|
KEY="$(xkblayout-state print '%s')"
|
||||||
|
|
||||||
xsetroot -name " $DATE // $TEMP, $BAT // $KEY"
|
xsetroot -name " $DATE // $TEMP, $BAT // $KEY"
|
||||||
|
Loading…
Reference in New Issue
Block a user