Created
July 18, 2012 15:24
-
-
Save gworley3/3136888 to your computer and use it in GitHub Desktop.
Darwin battery monitor in terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#based on https://raw.github.com/richoH/dotfiles/master/bin/battery | |
#displays 100% when battery is full | |
#hearts fill from the left rather than the right, video game style | |
HEART_FULL=♥ | |
HEART_EMPTY=♡ | |
[ -z "$NUM_HEARTS" ] && | |
NUM_HEARTS=5 | |
cutinate() | |
{ | |
perc=$1 | |
inc=$(( 100 / $NUM_HEARTS)) | |
for i in `seq $NUM_HEARTS`; do | |
perc=$(( $perc - $inc )) | |
if [ $perc -ge 0 ]; then | |
echo $HEART_FULL | |
else | |
echo $HEART_EMPTY | |
fi | |
done | |
} | |
# Do with grep and awk unless too hard | |
# TODO Identify which machine we're on from teh script. | |
battery_status() | |
{ | |
case $1 in | |
"Discharging") | |
ext="No";; | |
"Charging") | |
ext="Yes";; | |
esac | |
ioreg -c AppleSmartBattery -w0 | \ | |
grep -o '"[^"]*" = [^ ]*' | \ | |
sed -e 's/= //g' -e 's/"//g' | \ | |
sort | \ | |
while read key value; do | |
case $key in | |
"MaxCapacity") | |
export maxcap=$value;; | |
"CurrentCapacity") | |
export curcap=$value;; | |
"ExternalConnected") | |
if [ "$ext" != "$value" ]; then | |
exit | |
fi | |
;; | |
"FullyCharged") | |
if [ "$value" = "Yes" ]; then | |
export maxcap=1; | |
export curcap=1; | |
#exit | |
fi | |
;; | |
esac | |
if [[ -n "$maxcap" && -n $curcap ]]; then | |
echo $(( 100 * $curcap / $maxcap )) | |
break | |
fi | |
done | |
} | |
BATTERY_STATUS=`battery_status $1` | |
[ -z "$BATTERY_STATUS" ] && exit | |
if [ -n "$CUTE_BATTERY_INDICATOR" ]; then | |
echo `cutinate $BATTERY_STATUS` | |
else | |
echo ${BATTERY_STATUS}% | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment