From 31ece2995a5ece873aeff5bea17642480c1aa9ca Mon Sep 17 00:00:00 2001 From: Von Random Date: Fri, 13 Jan 2017 13:36:09 +0300 Subject: [PATCH] use a proper tool to check for updates --- plugins/pacman.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/pacman.py b/plugins/pacman.py index b6eba34..5789d7c 100644 --- a/plugins/pacman.py +++ b/plugins/pacman.py @@ -5,7 +5,7 @@ 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.freq = config.getint(section, 'freq', fallback=15) self.format_status(0) def format_status(self, count): @@ -18,5 +18,5 @@ class PluginThread(plugins.PluginThreadCommon): self.status['urgent'] = False 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)