Skip to content

Instantly share code, notes, and snippets.

@AlyxRen
Created February 21, 2011 19:25
Show Gist options
  • Save AlyxRen/837559 to your computer and use it in GitHub Desktop.
Save AlyxRen/837559 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# coding=UTF-8
import math, subprocess
p = subprocess.Popen(["ioreg", "-rc", "AppleSmartBattery"], stdout=subprocess.PIPE)
output = p.communicate()[0]
o_max = [l for l in output.splitlines() if 'MaxCapacity' in l][0]
o_cur = [l for l in output.splitlines() if 'CurrentCapacity' in l][0]
o_plug = [l for l in output.splitlines() if 'ExternalConnected' in l][0]
b_max = float(o_max.rpartition('=')[-1].strip())
b_cur = float(o_cur.rpartition('=')[-1].strip())
b_plug = True if o_plug.rpartition('=')[-1].strip() == "Yes" else False
charge = b_cur / b_max
charge_threshold = int(math.ceil(10 * charge))
# Output
total_slots, slots = 10, []
filled = int(math.ceil(charge_threshold * (total_slots / 10.0))) * u'▸'
empty = (total_slots - len(filled)) * u'▹'
out = (filled + empty).encode('utf-8')
import sys
color_green = ""
color_yellow = ""
color_red = ""
color_reset = ""
if b_plug:
charged = color_red + "ϟ" + color_reset
else:
charged = ""
color_out = (
color_green if len(filled) > 6
else color_yellow if len(filled) > 4
else color_red
)
out = color_out + out + color_reset + charged
sys.stdout.write(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment