[modules/hostname] add hostname module
This commit is contained in:
parent
0b9d51df08
commit
41b48cf8e8
1 changed files with 24 additions and 0 deletions
24
bumblebee/modules/hostname.py
Normal file
24
bumblebee/modules/hostname.py
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# pylint: disable=C0111,R0903
|
||||||
|
|
||||||
|
"""Displays the system hostname."""
|
||||||
|
|
||||||
|
import bumblebee.input
|
||||||
|
import bumblebee.output
|
||||||
|
import bumblebee.engine
|
||||||
|
|
||||||
|
|
||||||
|
class Module(bumblebee.engine.Module):
|
||||||
|
def __init__(self, engine, config):
|
||||||
|
super(Module, self).__init__(engine, config,
|
||||||
|
bumblebee.output.Widget(full_text=self.output)
|
||||||
|
)
|
||||||
|
self._hname = ""
|
||||||
|
|
||||||
|
def output(self, _):
|
||||||
|
return self._hname+" "+u"\uf233"
|
||||||
|
|
||||||
|
def update(self, widgets):
|
||||||
|
with open('/proc/sys/kernel/hostname', 'r') as f:
|
||||||
|
self._hname = f.readline().split()[0]
|
||||||
|
|
||||||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
Loading…
Reference in a new issue