diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 13:08:22 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 13:08:22 +0200 |
commit | 44f9dd147604d672c524f16333c781cc471c5bad (patch) | |
tree | a00848b865fb8e7594f37fd660302075f5c489ef | |
parent | 6a801ff33c56010895cb9236850081cf1751a100 (diff) |
fix: remove too much space before weathermain
-rw-r--r-- | app/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index 216b3ce..3b41690 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -195,7 +195,7 @@ createWindow args = do [pure (lit " "), lit <$> Sensor.snd], [pure (lit " "), lit <$> thermal], [pure (lit " "), lit <$> bat], - [pure (lit " "), lit <$> weatherForecast], + [lit <$> weatherForecast], [pure (lit " "), lit <$> date, pure (lit ", "), lit <$> time], [] ] |