Merge pull request #693 from mstraube/battery

Add battery support for Bay Trail devices
This commit is contained in:
Dylan Araps 2017-04-10 21:36:24 +10:00 committed by GitHub
commit 28adc60e57

View file

@ -1833,17 +1833,13 @@ get_disk() {
get_battery() {
case "$os" in
"Linux")
# We use 'prin' here and exit the function early so that we can
# do multi battery support with a single battery per line.
for bat in "/sys/class/power_supply/BAT"*; do
# We use 'prin' here so that we can do multi battery support
# with a single battery per line.
for bat in "/sys/class/power_supply/"{BAT,axp288_fuel_gauge}*; do
capacity="$(< "${bat}/capacity")"
status="$(< "${bat}/status")"
# Fix for bash on Windows 10 which includes /proc files
# for battery usage despite there not being a battery
# installed.
[[ -z "$capacity" ]] && return
if [[ "$capacity" ]]; then
battery="${capacity}% [${status}]"
case "$battery_display" in
@ -1852,7 +1848,9 @@ get_battery() {
"barinfo") battery="$(bar "$capacity" 100)${info_color} ${battery}" ;;
esac
bat="${bat/*axp288_fuel_gauge}"
prin "${subtitle:+${subtitle}${bat: -1}}" "$battery"
fi
done
return
;;