summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorLibravatar Fabian Kirchner <kirchner@posteo.de>2024-08-12 16:39:03 +0200
committerLibravatar Fabian Kirchner <kirchner@posteo.de>2024-08-12 16:39:03 +0200
commitd2522987a78a3c8b616c9b5f343a940ec15bd3ed (patch)
tree429d97ceecc87a1fd4666b58392f4f067a240da8 /app
parent46858d626efb306bb8c3f6297eea5e56fc9a8fac (diff)
feat: make active workspace cyan
Diffstat (limited to 'app')
-rw-r--r--app/Sensor.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Sensor.hs b/app/Sensor.hs
index 7371c31..d0b8a0c 100644
--- a/app/Sensor.hs
+++ b/app/Sensor.hs
@@ -505,7 +505,7 @@ instance P.Pretty [Workspace] where
instance P.Pretty Workspace where
pretty (Active s) = P.color P.White (P.pretty s)
- pretty (Inactive s) = P.colorDull P.White (P.pretty s)
+ pretty (Inactive s) = P.color P.Cyan (P.pretty s)
(<$$>) :: (Functor f, Functor g) => (a -> b) -> f (g a) -> f (g b)
f <$$> x = fmap f <$> x