From d18bcdc1658b212aa1fb15a1d5e2e46cd774aa79 Mon Sep 17 00:00:00 2001 From: PRESFIL Date: Thu, 26 Nov 2020 13:23:33 +0000 Subject: [PATCH] Replace composeOne with composeAll --- XMonad/Config/Example.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/XMonad/Config/Example.hs b/XMonad/Config/Example.hs index b9a9a941..0d2ff53e 100644 --- a/XMonad/Config/Example.hs +++ b/XMonad/Config/Example.hs @@ -68,10 +68,10 @@ myXPConfig = def -- -- Use the `xprop' tool to get the info you need for these matches. -- For className, use the second value that xprop gives you. -myManageHook = composeOne - [ className =? "Pidgin" -?> doFloat - , className =? "XCalc" -?> doFloat - , className =? "mpv" -?> doFloat +myManageHook = composeAll + [ className =? "Pidgin" --> doFloat + , className =? "XCalc" --> doFloat + , className =? "mpv" --> doFloat ] <+> composeOne -- Handle floating windows: [ transience -- move transient windows to their parent