diff options
author | Brent Yorgey <byorgey@gmail.com> | 2007-12-10 18:33:57 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2007-12-10 18:33:57 +0100 |
commit | aaffda953b8e141037421208f1120a77bdc98a5f (patch) | |
tree | 0333708b2c6ef3a729087a88f52ab859bf580c6a | |
parent | 0e07b3529da298dc936efedd304635b85a940608 (diff) | |
download | metatile-aaffda953b8e141037421208f1120a77bdc98a5f.tar metatile-aaffda953b8e141037421208f1120a77bdc98a5f.zip |
man/xmonad.hs: add some documentation explaining that 'title' can be used in the manageHook just like 'resource' and 'className'.
darcs-hash:20071210173357-bd4d7-a8af22fcadc1ea3e9fb8341858db5e984a8b64b7
-rw-r--r-- | man/xmonad.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/man/xmonad.hs b/man/xmonad.hs index 62d64fc..913fd66 100644 --- a/man/xmonad.hs +++ b/man/xmonad.hs @@ -222,6 +222,9 @@ myLayout = tiled ||| Mirror tiled ||| Full -- > xprop | grep WM_CLASS -- 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 [ className =? "MPlayer" --> doFloat , className =? "Gimp" --> doFloat |