[modules/hostname] Update to new API
This commit is contained in:
parent
c23670adab
commit
4b641c08c6
1 changed files with 12 additions and 13 deletions
|
@ -2,23 +2,22 @@
|
||||||
|
|
||||||
"""Displays the system hostname."""
|
"""Displays the system hostname."""
|
||||||
|
|
||||||
import bumblebee.input
|
import platform
|
||||||
import bumblebee.output
|
|
||||||
import bumblebee.engine
|
|
||||||
|
|
||||||
|
import core.module
|
||||||
|
import core.widget
|
||||||
|
import core.decorators
|
||||||
|
|
||||||
class Module(bumblebee.engine.Module):
|
class Module(core.module.Module):
|
||||||
def __init__(self, engine, config):
|
@core.decorators.every(minutes=60)
|
||||||
super(Module, self).__init__(engine, config,
|
def __init__(self, config):
|
||||||
bumblebee.output.Widget(full_text=self.output)
|
super().__init__(config, core.widget.Widget(self.output))
|
||||||
)
|
self.__hname = ''
|
||||||
self._hname = ""
|
|
||||||
|
|
||||||
def output(self, _):
|
def output(self, _):
|
||||||
return self._hname+" "+u"\uf233"
|
return self.__hname + ' ' + u'\uf233'
|
||||||
|
|
||||||
def update(self, widgets):
|
def update(self):
|
||||||
with open('/proc/sys/kernel/hostname', 'r') as f:
|
self.__hname = platform.node()
|
||||||
self._hname = f.readline().split()[0]
|
|
||||||
|
|
||||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||||
|
|
Loading…
Reference in a new issue