diff options
author | jao <jao@gnu.org> | 2020-01-04 21:56:00 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2020-01-04 21:56:00 +0000 |
commit | f6275232214a6981f71e0ea2cd72c80bf93c0c23 (patch) | |
tree | b44edf2b68261c38e9a28e749a386b60f5dfcad9 | |
parent | 244c4d439d2d80f0a5bea5872e2f2d312db25b80 (diff) | |
download | xmobar-config-f6275232214a6981f71e0ea2cd72c80bf93c0c23.tar.gz xmobar-config-f6275232214a6981f71e0ea2cd72c80bf93c0c23.tar.bz2 |
New weather -w flag (unused, really)
-rw-r--r-- | src/lib/Monitors.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Monitors.hs b/src/lib/Monitors.hs index 7d57f5d..324043d 100644 --- a/src/lib/Monitors.hs +++ b/src/lib/Monitors.hs @@ -91,7 +91,7 @@ weather' tmp st p = , ("partly cloudy", "<fn=3>⛅</fn>") , ("mostly cloudy", "<fn=3>☁</fn>") , ("considerable cloudiness", "<fn=4>⛈</fn>")] - (p <~> ["-t", tmp , "-L","10", "-H", "25"]) + (mkArgs p ["-t", tmp , "-L","10", "-H", "25"] ["-w", ""]) 18000 weather = weather' "<skyConditionS> <tempC>° <rh>% <windKmh> (<hour>)" |