aboutsummaryrefslogtreecommitdiffstats
path: root/man/xmonad.hs
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
commitdff6d41566479b6ca6cde91093024d41d5d230c1 (patch)
treef50696ebf74e93f1600c067678e53ee185f6b89d /man/xmonad.hs
parent276cd2b68f4da013f3b33246740d1c61da91b1dd (diff)
downloadxmonad-dff6d41566479b6ca6cde91093024d41d5d230c1.tar.gz
xmonad-dff6d41566479b6ca6cde91093024d41d5d230c1.tar.xz
xmonad-dff6d41566479b6ca6cde91093024d41d5d230c1.zip
Update example config
darcs-hash:20080127212331-a5988-527e9ead56a804cae63dcca49b029aa43d1e6fd0.gz
Diffstat (limited to '')
-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,