14bce293eb
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.
18 lines
293 B
Python
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
|