A simple replacement for i3status that is both extensible and customizable.
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.
|
|
|
import psutil
|
|
|
|
import plugins
|
|
|
|
|
|
|
|
|
|
|
|
class PluginThread(plugins.PluginThreadCommon):
|
|
|
|
def __init__(self, config):
|
|
|
|
super(PluginThread, self).__init__(config)
|
|
|
|
|
|
|
|
def main(self):
|
|
|
|
mem_stat = psutil.virtual_memory()
|
|
|
|
mem_available = str(round(mem_stat.available / 2**30, 2))
|
|
|
|
mem = 'RAM: ' + mem_available + 'G'
|
|
|
|
self.status['full_text'] = mem
|