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 | 36c71b73155857421d2b4881c9356f5e075ae50a (patch) | |
tree | 0333708b2c6ef3a729087a88f52ab859bf580c6a /man | |
parent | 3368401bfd728a402a863abd3a328d3cf257b861 (diff) | |
download | xmonad-36c71b73155857421d2b4881c9356f5e075ae50a.tar.gz xmonad-36c71b73155857421d2b4881c9356f5e075ae50a.tar.xz xmonad-36c71b73155857421d2b4881c9356f5e075ae50a.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.gz
Diffstat (limited to 'man')
-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 |