diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-12 13:59:50 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-12 13:59:50 +0200 |
commit | b28555a116278861ffbbfc43199a470e438d45f4 (patch) | |
tree | 3d1a7f9a39bfe013aeb1657c0d0d96f59cdd1c3a /app/Main.hs | |
parent | f413648183c90e454ba42aa3f1c8794f1d4fa729 (diff) |
feat: adjust bat icon depending on value
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 7d499d8..caee3fb 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 (if args.icons then "\xf028 " else "snd ")), lit <$> Sensor.snd], - [pure (lit (if args.icons then "\xf240 " else "bat ")), lit <$> bat], + [lit <$> bat], [pure (lit " "), lit <$> date, pure (lit ", "), lit <$> time], [] ] |