Source code for i3pystatus.updates.cower

from i3pystatus.core.command import run_through_shell
from i3pystatus.updates import Backend


[docs]class Cower(Backend): """ Checks for updates in Arch User Repositories using the `cower` AUR helper. Depends on cower AUR agent - https://github.com/falconindy/cower """ @property def updates(self): command = ["cower", "-u"] cower = run_through_shell(command) return cower.out.count('\n'), cower.out
Backend = Cower if __name__ == "__main__": """ Call this module directly; Print the update count and notification body. """ print("Updates: {}\n\n{}".format(*Backend().updates))