summaryrefslogtreecommitdiffstats
path: root/py3status/modules/weather_yahoo.py
diff options
context:
space:
mode:
Diffstat (limited to 'py3status/modules/weather_yahoo.py')
-rw-r--r--py3status/modules/weather_yahoo.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/py3status/modules/weather_yahoo.py b/py3status/modules/weather_yahoo.py
index 2962a75..df202d0 100644
--- a/py3status/modules/weather_yahoo.py
+++ b/py3status/modules/weather_yahoo.py
@@ -114,6 +114,10 @@ if __name__ == "__main__":
"""
from time import sleep
x = Py3status()
+ config = {
+ 'color_good': '#00FF00',
+ 'color_bad': '#FF0000',
+ }
while True:
- print(x.weather_yahoo([], {}))
+ print(x.weather_yahoo([], config))
sleep(1)