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