|
@@ -409,9 +409,12 @@ class CursesMonitor(object):
|
|
|
curses.init_pair(4, curses.COLOR_MAGENTA, self.background)
|
|
|
# greeting
|
|
|
curses.init_pair(5, curses.COLOR_BLUE, self.background)
|
|
|
+ # started state
|
|
|
+ curses.init_pair(6, curses.COLOR_YELLOW, self.foreground)
|
|
|
|
|
|
self.state_colors = {states.SUCCESS: curses.color_pair(3),
|
|
|
- states.REVOKED: curses.color_pair(4)}
|
|
|
+ states.REVOKED: curses.color_pair(4),
|
|
|
+ states.STARTED: curses.color_pair(6)}
|
|
|
for state in states.EXCEPTION_STATES:
|
|
|
self.state_colors[state] = curses.color_pair(2)
|
|
|
|