summaryrefslogtreecommitdiffhomepage
path: root/src/lib/Monitors.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Monitors.hs')
-rw-r--r--src/lib/Monitors.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Monitors.hs b/src/lib/Monitors.hs
index 3cede52..f09631b 100644
--- a/src/lib/Monitors.hs
+++ b/src/lib/Monitors.hs
@@ -102,13 +102,14 @@ weather' tmp st p =
, ("considerable cloudiness", fn 4 "⛈")
, ("light rain", fn 4 "🌧")
, ("rain", fn 4 "⛆")
- , ("ice crystals", fn 3 "❄")
+ , ("ice crystals", snow)
, ("light snow", fn 3 "🌨")
- , ("snow", fn 3 "❄")
+ , ("snow", snow)
]
(mkArgs p ["-t", tmp , "-L","10", "-H", "25" , "-T", "25", "-E", ".."]
["-w", ""])
18000
+ where snow = fni "\xf2dc"
weather = weather' "<skyConditionS> <tempC>° <rh>% <windKmh> (<hour>)"