[modules] re-add spacer
This commit is contained in:
parent
4b641c08c6
commit
e4151685ff
1 changed files with 23 additions and 0 deletions
23
modules/core/spacer.py
Normal file
23
modules/core/spacer.py
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# pylint: disable=C0111,R0903
|
||||||
|
|
||||||
|
"""Draws a widget with configurable text content.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
* spacer.text: Widget contents (defaults to empty string)
|
||||||
|
"""
|
||||||
|
|
||||||
|
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.text)
|
||||||
|
)
|
||||||
|
self._text = self.parameter("text", "")
|
||||||
|
|
||||||
|
def text(self, widget):
|
||||||
|
return self._text
|
||||||
|
|
||||||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
Loading…
Reference in a new issue