bumblebee-status/bumblebee/module.py
Tobias Witek 14bce293eb [themes] Add support for generic warning/critical colors
Font and background colors for warning and critical elements can now be
specified using fg-warning, fg-critical, bg-warning and bg-critical.

Also, optionally, the "urgent" flag will be set towards the i3bar, if
possible.
2016-10-31 11:35:12 +01:00

18 lines
293 B
Python

class Module(object):
def __init__(self, args):
pass
def data(self):
pass
def critical(self):
return False
def warning(self):
return False
def state(self):
return "default"
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4