Added a script to check battery status

This commit is contained in:
aaron-gh 2022-11-30 14:11:51 +00:00
parent be77a6a383
commit 9651ff906c

10
scripts/battery_status.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/env bash
#Get battery status
cd /sys/class/power_supply
for f in `ls`; do
if [ -e $f"/capacity" ]; then
export stat=`cat $f"/status"`
export cap=`cat $f"/capacity"`
echo battery $f": "$stat", "$cap"%"
fi
done|zenity --text-info --filename=/dev/stdin --title "Power Status"