f72d905d97
Add a very, very basic module that simply adds a spacer (and empty element) to the bar.
11 lines
253 B
Python
11 lines
253 B
Python
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
|