Add module arch-update
This commit is contained in:
parent
159e9e20c0
commit
c617a478bf
2 changed files with 48 additions and 4 deletions
41
bumblebee/modules/arch-update.py
Normal file
41
bumblebee/modules/arch-update.py
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
"""Check updates to Arch Linux."""
|
||||||
|
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
import bumblebee.input
|
||||||
|
import bumblebee.output
|
||||||
|
import bumblebee.engine
|
||||||
|
|
||||||
|
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()
|
||||||
|
|
||||||
|
if p_status == 0:
|
||||||
|
(output, err) = p.communicate()
|
||||||
|
|
||||||
|
output = output.decode('utf-8')
|
||||||
|
packages = output.split('\n')
|
||||||
|
packages.pop()
|
||||||
|
|
||||||
|
return len(packages)
|
||||||
|
return '0'
|
||||||
|
|
||||||
|
def utilization(self, widget):
|
||||||
|
return f'Update Arch: {self.packages}'
|
||||||
|
|
||||||
|
def hidden(self):
|
||||||
|
return self.check_updates() == 0
|
||||||
|
|
||||||
|
def update(self, widgets):
|
||||||
|
self.packages = self.check_updates()
|
||||||
|
|
||||||
|
def state(self, widget):
|
||||||
|
return self.threshold_state(self.packages, 1, 100)
|
|
@ -114,6 +114,9 @@
|
||||||
"repeat-on": { "prefix": "" },
|
"repeat-on": { "prefix": "" },
|
||||||
"repeat-off": { "prefix": "" }
|
"repeat-off": { "prefix": "" }
|
||||||
},
|
},
|
||||||
|
"arch": {
|
||||||
|
"prefix": ""
|
||||||
|
},
|
||||||
"github": {
|
"github": {
|
||||||
"prefix": " "
|
"prefix": " "
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue