diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 10:21:00 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 10:21:00 +0200 |
commit | 1083d34c8563d3ce200f2f363ce36b19bf792f6f (patch) | |
tree | 328a028ee81a0917494094a9c852fca9b4c4dd3e /app/Main.hs | |
parent | 3533c6941bf7a7732a0cf81465e97949c4969be4 (diff) |
feat: show batteries separately and correct state
Diffstat (limited to 'app/Main.hs')
-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 42ce113..aadae2d 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -193,7 +193,7 @@ createWindow args = do [pure (lit (if args.icons then "\xf1638 " else "io ")), lit <$> io], [pure (lit (if args.icons then "\xf0200 " else "net ")), lit <$> net], [pure (lit " "), lit <$> Sensor.snd], - [pure (lit " "), lit <$> bat], + [pure (lit " "), lit <$> bat], [pure (lit " "), lit <$> weatherForecast], [pure (lit " "), lit <$> date, pure (lit ", "), lit <$> time], [] |