Updated the battery status script.

This commit is contained in:
stormdragon2976 2022-11-30 17:47:37 -05:00
parent bd88e966de
commit f87f2e4268

View File

@ -1,10 +1,13 @@
#!/bin/env bash #!/usr/bin/env bash
#Get battery status
cd /sys/class/power_supply find /sys/class/power_supply -type l -exec bash -c '
for f in `ls`; do for i ; do
if [ -e $f"/capacity" ]; then if [[ -e "$i/capacity" ]]; then
export stat=`cat $f"/status"` bat="${i##*/}"
export cap=`cat $f"/capacity"` bat="${bat//BAT/Battery }"
echo battery $f": "$stat", "$cap"%" bat="${bat}: $(cat "${i}/capacity") percent"
fi spd-say -P important -Cw "$bat"
done|spd-say -e fi
done
' _ {} \;