20 lines
599 B
Python
20 lines
599 B
Python
import plugins
|
|
import subprocess
|
|
|
|
|
|
class PluginThread(plugins.PluginThreadCommon):
|
|
def __init__(self, section, config):
|
|
super(PluginThread, self).__init__(section, config)
|
|
self.freq = config.getint(section, 'freq', fallback=180)
|
|
self.format_status(0)
|
|
|
|
def format_status(self, count):
|
|
self.status['full_text'] = 'UPD: ' + str(count)
|
|
if count > 0:
|
|
self.hide = False
|
|
else:
|
|
self.hide = True
|
|
|
|
def main(self):
|
|
updates = subprocess.getoutput('/usr/bin/pacman -Sup').count("\n")
|
|
self.format_status(updates)
|