From f72d905d971cace079f4f6aecb74288224911ad0 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Mon, 31 Oct 2016 15:23:59 +0100 Subject: [PATCH] [modules] Add "spacer" Add a very, very basic module that simply adds a spacer (and empty element) to the bar. --- bumblebee/modules/spacer.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 bumblebee/modules/spacer.py diff --git a/bumblebee/modules/spacer.py b/bumblebee/modules/spacer.py new file mode 100644 index 0000000..06fc948 --- /dev/null +++ b/bumblebee/modules/spacer.py @@ -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