20 lines
549 B
Python
20 lines
549 B
Python
import os
|
|
import plugins
|
|
|
|
|
|
LOAD_DEFAULTS = {'freq': 20, 'problem': 1}
|
|
|
|
|
|
class PluginThread(plugins.PluginThreadCommon):
|
|
def __init__(self, config):
|
|
super(PluginThread, self).__init__(config, LOAD_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
|
|
self.status['full_text'] = 'LA: {:.2f} {:.2f} {:.2f}'.format(*loads)
|