summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2008-01-27 22:23:31 +0100
committerSpencer Janssen <sjanssen@cse.unl.edu>2008-01-27 22:23:31 +0100
commit8815b88f7ec0c77bcbd4c581b8b3432d2e75b98d (patch)
treef50696ebf74e93f1600c067678e53ee185f6b89d /man
parent86116e481a336d9e84ce7572bae10e6604ae3c60 (diff)
downloadmetatile-8815b88f7ec0c77bcbd4c581b8b3432d2e75b98d.tar
metatile-8815b88f7ec0c77bcbd4c581b8b3432d2e75b98d.zip
Update example config
darcs-hash:20080127212331-a5988-527e9ead56a804cae63dcca49b029aa43d1e6fd0
Diffstat (limited to 'man')
-rw-r--r--man/xmonad.hs5
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,