added battery support
This commit is contained in:
parent
47fe175441
commit
3ccb5359ac
1 changed files with 31 additions and 6 deletions
|
@ -43,6 +43,10 @@ battery_percent()
|
|||
echo $(pmset -g batt | grep -Eo '[0-9]?[0-9]?[0-9]%')
|
||||
;;
|
||||
|
||||
FreeBSD)
|
||||
echo $(apm | sed '8,11d' | grep life | awk '{print $4}')
|
||||
;;
|
||||
|
||||
CYGWIN*|MINGW32*|MSYS*|MINGW*)
|
||||
# leaving empty - TODO - windows compatability
|
||||
;;
|
||||
|
@ -64,6 +68,10 @@ battery_status()
|
|||
status=$(pmset -g batt | sed -n 2p | cut -d ';' -f 2)
|
||||
;;
|
||||
|
||||
FreeBSD)
|
||||
status=$(apm | sed '8,11d' | grep Status | awk '{printf $3}')
|
||||
;;
|
||||
|
||||
CYGWIN*|MINGW32*|MSYS*|MINGW*)
|
||||
# leaving empty - TODO - windows compatability
|
||||
;;
|
||||
|
@ -72,11 +80,28 @@ battery_status()
|
|||
;;
|
||||
esac
|
||||
|
||||
if [ $status = 'discharging' ] || [ $status = 'Discharging' ]; then
|
||||
case $status in
|
||||
discharging|Discharging)
|
||||
echo ''
|
||||
else
|
||||
;;
|
||||
high)
|
||||
echo ''
|
||||
;;
|
||||
charging)
|
||||
echo 'AC'
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
echo 'AC'
|
||||
;;
|
||||
esac
|
||||
### Old if statements didn't work on BSD, they're probably not POSIX compliant, not sure
|
||||
# if [ $status = 'discharging' ] || [ $status = 'Discharging' ]; then
|
||||
# echo ''
|
||||
# # elif [ $status = 'charging' ]; then # This is needed for FreeBSD AC checking support
|
||||
# # echo 'AC'
|
||||
# else
|
||||
# echo 'AC'
|
||||
# fi
|
||||
}
|
||||
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue