You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
615 B
19 lines
615 B
import psutil |
|
import plugins |
|
|
|
|
|
class PluginThread(plugins.PluginThreadCommon): |
|
def __init__(self, config): |
|
defaults = {'problem': 85} |
|
super(PluginThread, self).__init__(config, defaults) |
|
|
|
def main(self): |
|
mem_stat = psutil.virtual_memory() |
|
if mem_stat.percent > self.conf['problem']: |
|
self.hide = False |
|
self.status['urgent'] = True |
|
else: |
|
self.hide = True |
|
self.status['urgent'] = False |
|
mem_available = str(round(mem_stat.available / 2**30, 2)) |
|
self.status['full_text'] = 'RAM: ' + str(mem_available) + 'G'
|
|
|