2016-10-31 15:23:59 +01:00
|
|
|
import bumblebee.module
|
|
|
|
import bumblebee.util
|
|
|
|
|
2016-10-31 16:08:03 +01:00
|
|
|
def usage():
|
|
|
|
return "spacer"
|
|
|
|
|
|
|
|
def notes():
|
|
|
|
return "none"
|
|
|
|
|
|
|
|
def description():
|
|
|
|
return "Draws an empty field."
|
|
|
|
|
2016-10-31 15:23:59 +01:00
|
|
|
class Module(bumblebee.module.Module):
|
2016-11-05 14:26:02 +01:00
|
|
|
def __init__(self, output, config, alias):
|
|
|
|
super(Module, self).__init__(output, config, alias)
|
2016-10-31 15:23:59 +01:00
|
|
|
|
2016-11-05 13:53:08 +01:00
|
|
|
def widgets(self):
|
2016-11-05 14:26:02 +01:00
|
|
|
return bumblebee.output.Widget(self, self._config.parameter("text", ""))
|
2016-10-31 15:23:59 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|