[modules] Add "spacer"

Add a very, very basic module that simply adds a spacer (and empty
element) to the bar.
This commit is contained in:
Tobias Witek 2016-10-31 15:23:59 +01:00
parent bcf0264f99
commit f72d905d97

View file

@ -0,0 +1,11 @@
import bumblebee.module
import bumblebee.util
class Module(bumblebee.module.Module):
def __init__(self, args):
super(Module, self).__init__(args)
def data(self):
return ""
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4