2018-09-08 03:21:57 +02:00
|
|
|
"""Check updates to Arch Linux."""
|
|
|
|
|
|
|
|
|
|
|
|
import subprocess
|
|
|
|
import bumblebee.input
|
|
|
|
import bumblebee.output
|
|
|
|
import bumblebee.engine
|
|
|
|
|
2018-09-08 03:38:15 +02:00
|
|
|
|
2018-09-08 03:21:57 +02:00
|
|
|
class Module(bumblebee.engine.Module):
|
|
|
|
def __init__(self, engine, config):
|
|
|
|
widget = bumblebee.output.Widget(full_text=self.utilization)
|
|
|
|
super(Module, self).__init__(engine, config, widget)
|
|
|
|
self.packages = self.check_updates()
|
|
|
|
|
|
|
|
def check_updates(self):
|
|
|
|
p = subprocess.Popen(
|
|
|
|
"checkupdates", stdout=subprocess.PIPE, shell=True)
|
|
|
|
|
|
|
|
p_status = p.wait()
|
2018-09-08 03:38:15 +02:00
|
|
|
|
2018-09-08 03:21:57 +02:00
|
|
|
if p_status == 0:
|
|
|
|
(output, err) = p.communicate()
|
|
|
|
|
|
|
|
output = output.decode('utf-8')
|
|
|
|
packages = output.split('\n')
|
|
|
|
packages.pop()
|
|
|
|
|
|
|
|
return len(packages)
|
2018-10-20 19:03:55 +02:00
|
|
|
return 0
|
2018-09-08 03:21:57 +02:00
|
|
|
|
2019-06-30 22:49:23 +02:00
|
|
|
@property
|
|
|
|
def _format(self):
|
|
|
|
return self.parameter("format", "Update Arch: {}")
|
|
|
|
|
2018-09-08 03:21:57 +02:00
|
|
|
def utilization(self, widget):
|
2019-06-30 22:49:23 +02:00
|
|
|
return self._format.format(self.packages)
|
2018-09-08 03:21:57 +02:00
|
|
|
|
|
|
|
def hidden(self):
|
2019-06-30 22:49:23 +02:00
|
|
|
return self.check_updates() == 0
|
2018-09-08 03:21:57 +02:00
|
|
|
|
|
|
|
def update(self, widgets):
|
2018-09-08 03:38:15 +02:00
|
|
|
self.packages = self.check_updates()
|
2018-09-08 03:21:57 +02:00
|
|
|
|
|
|
|
def state(self, widget):
|
|
|
|
return self.threshold_state(self.packages, 1, 100)
|