From 2cfa5ef23a138fd9510817da64ae9fc7b52b483b Mon Sep 17 00:00:00 2001 From: PRESFIL Date: Thu, 26 Nov 2020 13:24:43 +0000 Subject: [PATCH] Fix: reorder statements --- XMonad/Config/Example.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/XMonad/Config/Example.hs b/XMonad/Config/Example.hs index 0d2ff53e..6b077a1f 100644 --- a/XMonad/Config/Example.hs +++ b/XMonad/Config/Example.hs @@ -68,12 +68,12 @@ 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 = composeAll - [ className =? "Pidgin" --> doFloat - , className =? "XCalc" --> doFloat - , className =? "mpv" --> doFloat - ] <+> composeOne +myManageHook = composeOne -- Handle floating windows: [ transience -- move transient windows to their parent , isDialog -?> doCenterFloat + ] <+> composeAll + [ className =? "Pidgin" --> doFloat + , className =? "XCalc" --> doFloat + , className =? "mpv" --> doFloat ]