bumblebee-status/bumblebee_status/modules/contrib/arch-update.py

59 lines
1.5 KiB
Python
Raw Permalink Normal View History

2020-04-13 13:58:58 +02:00
"""Check updates to Arch Linux.
Requires the following executable:
* checkupdates (from pacman-contrib)
contributed by `lucassouto <https://github.com/lucassouto>`_ - many thanks!
2020-04-13 13:58:58 +02:00
"""
2020-05-08 16:09:10 +02:00
import logging
from time import sleep
2020-05-08 16:09:10 +02:00
import core.module
import core.widget
import core.decorators
2020-04-13 13:58:58 +02:00
import util.cli
2020-04-13 13:58:58 +02:00
class Module(core.module.Module):
@core.decorators.every(minutes=60)
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.utilization))
self.background = True
self.__packages = 0
self.__error = False
2020-04-13 13:58:58 +02:00
@property
def __format(self):
return self.parameter("format", "Update Arch: {}")
2020-04-13 13:58:58 +02:00
def utilization(self, widget):
return self.__format.format(self.__packages)
2020-04-13 13:58:58 +02:00
def hidden(self):
return self.__packages == 0 and not self.__error
2020-04-13 13:58:58 +02:00
def update(self):
self.__error = False
sleep(1)
2020-05-14 20:36:01 +02:00
code, result = util.cli.execute(
"checkupdates", ignore_errors=True, return_exitcode=True
)
if code == 0:
self.__packages = len(result.strip().split("\n"))
elif code == 2:
self.__packages = 0
else:
self.__error = True
2020-05-26 08:15:15 +02:00
logging.error("checkupdates exited with {}: {}".format(code, result))
2020-04-13 13:58:58 +02:00
def state(self, widget):
if self.__error:
return "warning"
return self.threshold_state(self.__packages, 1, 100)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4