mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
Fix: reorder statements
This commit is contained in:
parent
d18bcdc165
commit
2cfa5ef23a
@ -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
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user