diff options
Diffstat (limited to 'py3status/modules/ns_checker.py')
| -rw-r--r-- | py3status/modules/ns_checker.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/py3status/modules/ns_checker.py b/py3status/modules/ns_checker.py index a79fdd6..5fa6384 100644 --- a/py3status/modules/ns_checker.py +++ b/py3status/modules/ns_checker.py @@ -76,6 +76,10 @@ if __name__ == "__main__": """ from time import sleep x = Py3status() + config = { + 'color_good': '#00FF00', + 'color_bad': '#FF0000', + } while True: - print(x.ns_checker([], {})) + print(x.ns_checker([], config)) sleep(1) |
