diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2008-01-27 22:23:31 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2008-01-27 22:23:31 +0100 |
commit | 8815b88f7ec0c77bcbd4c581b8b3432d2e75b98d (patch) | |
tree | f50696ebf74e93f1600c067678e53ee185f6b89d | |
parent | 86116e481a336d9e84ce7572bae10e6604ae3c60 (diff) | |
download | metatile-8815b88f7ec0c77bcbd4c581b8b3432d2e75b98d.tar metatile-8815b88f7ec0c77bcbd4c581b8b3432d2e75b98d.zip |
Update example config
darcs-hash:20080127212331-a5988-527e9ead56a804cae63dcca49b029aa43d1e6fd0
-rw-r--r-- | man/xmonad.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/man/xmonad.hs b/man/xmonad.hs index 2cb8443..e283afb 100644 --- a/man/xmonad.hs +++ b/man/xmonad.hs @@ -230,6 +230,10 @@ myManageHook = composeAll , resource =? "desktop_window" --> doIgnore , resource =? "kdesktop" --> doIgnore ] +-- Whether focus follows the mouse pointer. +myFocusFollowsMouse :: Bool +myFocusFollowsMouse = True + ------------------------------------------------------------------------ -- Status bars and logging @@ -259,6 +263,7 @@ main = xmonad defaults defaults = defaultConfig { -- simple stuff terminal = myTerminal, + focusFollowsMouse = myFocusFollowsMouse, borderWidth = myBorderWidth, modMask = myModMask, numlockMask = myNumlockMask, |