use a proper tool to check for updates
This commit is contained in:
parent
d921f17f1c
commit
31ece2995a
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ import subprocess
|
||||||
class PluginThread(plugins.PluginThreadCommon):
|
class PluginThread(plugins.PluginThreadCommon):
|
||||||
def __init__(self, section, config):
|
def __init__(self, section, config):
|
||||||
super(PluginThread, self).__init__(section, config)
|
super(PluginThread, self).__init__(section, config)
|
||||||
self.freq = config.getint(section, 'freq', fallback=180)
|
self.freq = config.getint(section, 'freq', fallback=15)
|
||||||
self.format_status(0)
|
self.format_status(0)
|
||||||
|
|
||||||
def format_status(self, count):
|
def format_status(self, count):
|
||||||
|
@ -18,5 +18,5 @@ class PluginThread(plugins.PluginThreadCommon):
|
||||||
self.status['urgent'] = False
|
self.status['urgent'] = False
|
||||||
|
|
||||||
def main(self):
|
def main(self):
|
||||||
updates = subprocess.getoutput('/usr/bin/pacman -Sup').count("\n")
|
updates = subprocess.getoutput('/usr/bin/pacman -Qu').count("\n")
|
||||||
self.format_status(updates)
|
self.format_status(updates)
|
||||||
|
|
Loading…
Reference in a new issue