Added battery support for FreeBSD and fixed weird bug
This commit is contained in:
parent
fcc1d50b54
commit
50290737ad
11
fetch
11
fetch
|
@ -1398,11 +1398,20 @@ getbattery () {
|
|||
battery="None"
|
||||
fi
|
||||
;;
|
||||
|
||||
"BSD")
|
||||
case "$distro" in
|
||||
"FreeBSD"*)
|
||||
battery=$(acpiconf -i 0 | awk -F ':\t' '/Remaining capacity/ {print $2}')
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
||||
"Mac OS X")
|
||||
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
||||
;;
|
||||
|
||||
|
||||
"Windows")
|
||||
battery="$(wmic Path Win32_Battery get EstimatedChargeRemaining /value)"
|
||||
battery=${battery/EstimatedChargeRemaining'='}
|
||||
|
@ -2081,7 +2090,7 @@ stdout () {
|
|||
*)
|
||||
"get$func" 2>/dev/null
|
||||
eval output="\$$func"
|
||||
printf "$output "
|
||||
printf "%s" "$output "
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
|
Reference in New Issue