summaryrefslogtreecommitdiffhomepage
path: root/src/Xmobar/X11
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2025-03-31 17:02:58 +0100
committerjao <jao@gnu.org>2025-03-31 17:02:58 +0100
commit98857472d93e6c6b4c9d501ae5c7172874c1ed82 (patch)
tree3d326e97b1e790fbd9c417617241e4cd3f45d31d /src/Xmobar/X11
parentc6976e852e4c9a8cd590c1c87eb6d7d9c6ce23c0 (diff)
downloadxmobar-98857472d93e6c6b4c9d501ae5c7172874c1ed82.tar.gz
xmobar-98857472d93e6c6b4c9d501ae5c7172874c1ed82.tar.bz2
hlinting
Diffstat (limited to 'src/Xmobar/X11')
-rw-r--r--src/Xmobar/X11/Loop.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Xmobar/X11/Loop.hs b/src/Xmobar/X11/Loop.hs
index 2dfb34d..0425cff 100644
--- a/src/Xmobar/X11/Loop.hs
+++ b/src/Xmobar/X11/Loop.hs
@@ -170,7 +170,7 @@ updateConfigPosition disp cfg =
runActions :: D.Actions -> A.Button -> X11.Position -> IO ()
runActions actions button pos =
mapM_ A.runAction $
- filter (\(A.Spawn b _) -> button `elem` b) $
- concatMap (\(a,_,_) -> a) $
- filter (\(_, from, to) -> pos' >= from && pos' <= to) actions
+ concatMap
+ (filter (\ (A.Spawn b _) -> button `elem` b) . (\ (a, _, _) -> a))
+ (filter (\ (_, from, to) -> pos' >= from && pos' <= to) actions)
where pos' = fromIntegral pos