vdstatus/plugins/date.py

22 lines
657 B
Python
Raw Normal View History

2016-10-18 20:00:43 +03:00
import time
import threading
2016-10-18 20:00:43 +03:00
class PluginThread(threading.Thread):
def __init__(self, section, config, thread_id):
threading.Thread.__init__(self)
self.threadID = thread_id
2016-10-22 19:27:28 +03:00
self.date_format = config.get(section, 'format', fallback='%c')
self.status = dict()
if config.has_option(section, 'color'):
self.status['color'] = config.get(section, 'color')
2016-10-23 02:27:27 +03:00
self.freq = config.getint(section, 'freq', fallback=1)
2016-10-22 19:27:28 +03:00
def main(self):
self.status['full_text'] = time.strftime(self.date_format)
def run(self):
while True:
2016-10-22 19:27:28 +03:00
self.main()
time.sleep(self.freq)