man/xmonad.hs: add some documentation explaining that 'title' can be used in the manageHook just like 'resource' and 'className'.

This commit is contained in:
Brent Yorgey 2007-12-10 17:33:57 +00:00
parent 9ceef229c3
commit 8c31768b79

View File

@ -222,6 +222,9 @@ myLayout = tiled ||| Mirror tiled ||| Full
-- > xprop | grep WM_CLASS -- > xprop | grep WM_CLASS
-- and click on the client you're interested in. -- and click on the client you're interested in.
-- --
-- To match on the WM_NAME, you can use 'title' in the same way that
-- 'className' and 'resource' are used below.
--
myManageHook = composeAll myManageHook = composeAll
[ className =? "MPlayer" --> doFloat [ className =? "MPlayer" --> doFloat
, className =? "Gimp" --> doFloat , className =? "Gimp" --> doFloat