5d971267db
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).
6 lines
144 B
Python
6 lines
144 B
Python
|
|
class Theme(object):
|
|
def __init__(self, name='default', iconset=None):
|
|
pass
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|