47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
import threading
|
|
import time
|
|
|
|
|
|
BATTERY_DIR = '/sys/class/power_supply/BAT0/'
|
|
|
|
|
|
class PluginThread(threading.Thread):
|
|
def __init__(self, section, config, thread_id):
|
|
threading.Thread.__init__(self)
|
|
self.threadID = thread_id
|
|
self.status = dict()
|
|
if config.has_option(section, 'color'):
|
|
self.status['color'] = config.get(section, 'color')
|
|
self.freq = config.getint(section, 'freq', fallback=1)
|
|
self.hide = False
|
|
self.should_stop = False
|
|
|
|
def main(self):
|
|
with open(BATTERY_DIR + 'capacity', 'r') as capacity, \
|
|
open(BATTERY_DIR + 'status', 'r') as status:
|
|
batt_stat = status.read().strip()
|
|
batt_capacity = capacity.read().strip()
|
|
if batt_stat != 'Discharging':
|
|
batt_stat = '\u2191'
|
|
if float(batt_capacity) < 15:
|
|
self.status['urgent'] = True
|
|
else:
|
|
self.status['urgent'] = False
|
|
else:
|
|
batt_stat = '\u2193'
|
|
self.status['urgent'] = False
|
|
|
|
batt = 'BAT: ' + batt_capacity + '% ' + batt_stat
|
|
|
|
self.status['full_text'] = batt
|
|
|
|
def stop(self):
|
|
self.should_stop = True
|
|
|
|
def run(self):
|
|
while True:
|
|
if self.should_stop is False:
|
|
self.main()
|
|
time.sleep(self.freq)
|
|
else:
|
|
break
|