[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:
parent
bcf0264f99
commit
f72d905d97
1 changed files with 11 additions and 0 deletions
11
bumblebee/modules/spacer.py
Normal file
11
bumblebee/modules/spacer.py
Normal 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
|
Loading…
Reference in a new issue