bumblebee-status/core/theme.py
Tobias Witek 5d971267db [core/theme] Add preparatory work for themes
Add two new parameters: theme and iconset

Add a placeholder class core.theme.Theme, an instance of which is passed
in to the i3 output object (which is the only object that should ever
have need of the theme, hopefully).
2020-02-09 13:46:56 +01:00

6 lines
144 B
Python

class Theme(object):
def __init__(self, name='default', iconset=None):
pass
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4