19 lines
556 B
Python
19 lines
556 B
Python
import os
|
|
import plugins
|
|
|
|
|
|
class PluginThread(plugins.PluginThreadCommon):
|
|
def __init__(self, config):
|
|
defaults = {'problem': 1}
|
|
super(PluginThread, self).__init__(config, defaults)
|
|
|
|
def main(self):
|
|
loads = os.getloadavg()
|
|
if loads[0] >= self.conf['problem']:
|
|
self.hide = False
|
|
self.status['urgent'] = True
|
|
else:
|
|
self.hide = True
|
|
self.status['urgent'] = False
|
|
loads = [str(i) for i in loads]
|
|
self.status['full_text'] = 'LA: ' + ' '.join(loads)
|