Fix: reorder statements

This commit is contained in:
PRESFIL 2020-11-26 13:24:43 +00:00 committed by GitHub
parent d18bcdc165
commit 2cfa5ef23a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,12 +68,12 @@ myXPConfig = def
-- --
-- Use the `xprop' tool to get the info you need for these matches. -- Use the `xprop' tool to get the info you need for these matches.
-- For className, use the second value that xprop gives you. -- For className, use the second value that xprop gives you.
myManageHook = composeAll myManageHook = composeOne
[ className =? "Pidgin" --> doFloat
, className =? "XCalc" --> doFloat
, className =? "mpv" --> doFloat
] <+> composeOne
-- Handle floating windows: -- Handle floating windows:
[ transience -- move transient windows to their parent [ transience -- move transient windows to their parent
, isDialog -?> doCenterFloat , isDialog -?> doCenterFloat
] <+> composeAll
[ className =? "Pidgin" --> doFloat
, className =? "XCalc" --> doFloat
, className =? "mpv" --> doFloat
] ]