diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-12 18:03:00 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-12 18:03:00 +0200 |
commit | 9c71a73775ddb2965fd2f792321900a87d2d5592 (patch) | |
tree | d6dde2482aa1fe8664699d0d695c99ae8d4331f8 /app/Main.hs | |
parent | d2522987a78a3c8b616c9b5f343a940ec15bd3ed (diff) |
feat: add weather forecast
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Main.hs b/app/Main.hs index 0ed59de..42ce113 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -194,6 +194,7 @@ createWindow args = do [pure (lit (if args.icons then "\xf0200 " else "net ")), lit <$> net], [pure (lit " "), lit <$> Sensor.snd], [pure (lit " "), lit <$> bat], + [pure (lit " "), lit <$> weatherForecast], [pure (lit " "), lit <$> date, pure (lit ", "), lit <$> time], [] ] |