[themes] Make individual items theme-able (a bit)

Individual items in the bar can now be configured with a prefix and a
suffix. It works like this:

* If there is a specific module configuration in the theme
  configuration, use that (i.e. { "<modulename>": { "prefix: " a " } })
* Otherwise, if there is a configuration in the "default" section of the
  theme, use that
* Otherwise, if the module object itself has a method called like the
  required attribute (prefix, suffix), use that
* Otherwise, leave prefix/suffix empty ("")
This commit is contained in:
Tobias Witek 2016-10-31 07:18:57 +01:00
parent e895400589
commit 3ca53dd0fa
7 changed files with 51 additions and 12 deletions

View file

@ -6,4 +6,10 @@ class Module(object):
def theme(self):
return self._theme
def data(self):
pass
def state(self):
return "default"
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4

View file

@ -9,8 +9,11 @@ class i3bar(bumblebee.output.Output):
return json.dumps({ "version": 1 }) + "["
def add(self, obj):
theme = obj.theme()
self._data.append({
"full_text": obj.data()
"full_text": "%s%s%s" % (theme.prefix(obj), obj.data(), theme.suffix(obj)),
"separator": False,
"separator_block_width": 0,
})
def get(self):

28
bumblebee/theme.py Normal file
View file

@ -0,0 +1,28 @@
import os
import json
class Theme:
def __init__(self, name="default"):
self._data = None
path = os.path.dirname(os.path.realpath(__file__))
with open("%s/themes/%s.json" % (path, name)) as f:
self._data = json.load(f)
self._defaults = self._data.get("defaults", {})
def _gettheme(self, obj, key):
module = obj.__module__.split(".")[-1]
module_theme = self._data.get(module, {})
value = getattr(obj, key)() if hasattr(obj, key) else ""
value = self._defaults.get(key, value)
value = module_theme.get(key, value)
return value
def prefix(self, obj):
return self._gettheme(obj, "prefix")
def suffix(self, obj):
return self._gettheme(obj, "suffix")
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4

View file

@ -1,6 +0,0 @@
class Theme:
def __init__(self, name):
pass
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4

View file

@ -0,0 +1,11 @@
{
"defaults": {
"prefix": " ",
"suffix" : " "
},
"battery": {
"prefix": "bat "
},
"time": {
}
}

View file

@ -1,3 +0,0 @@
{
}

View file

@ -4,7 +4,7 @@ import sys
import time
import argparse
import importlib
import bumblebee.themes
import bumblebee.theme
import bumblebee.outputs.i3
def print_module_list():
@ -24,7 +24,7 @@ def main():
sys.exit(0)
modules = []
theme = bumblebee.themes.Theme(args.theme)
theme = bumblebee.theme.Theme(args.theme) if args.theme else bumblebee.theme.Theme()
for m in args.modules:
# TODO: how to cleanly handle errors here?
# (useful error messages)