diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-10-13 22:56:05 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-10-13 22:56:05 +0200 |
commit | 9210b48e15a40b99f6755da7efc5019719233ebf (patch) | |
tree | 9547813c1c039bdce4eb180541edad98eca9c6b7 | |
parent | 0e667da65c62034509e76f2a6cc02ce21b584559 (diff) | |
download | xmonad-9210b48e15a40b99f6755da7efc5019719233ebf.tar.gz xmonad-9210b48e15a40b99f6755da7efc5019719233ebf.tar.xz xmonad-9210b48e15a40b99f6755da7efc5019719233ebf.zip |
Another manageHook example
darcs-hash:20071013205605-a5988-b20178d9fbbf3640eb69cba3bd7f0b4ddbfa0d19.gz
-rw-r--r-- | Config.hs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -79,6 +79,11 @@ manageHook w _ _ c | c `elem` floats = fmap (W.float w . snd) (floatLocation w) manageHook w _ n _ | n `elem` ignore = reveal w >> return (W.delete w) where ignore = ["gnome-panel", "desktop_window", "kicker", "kdesktop"] +-- Automatically send Firefox windows to the "web" workspace: +-- If a workspace named "web" doesn't exist, the window will appear on the +-- current workspace. +manageHook _ _ "Gecko" _ = return $ W.shift "web" + -- The default rule: return the WindowSet unmodified. You typically do not -- want to modify this line. manageHook _ _ _ _ = return id |