aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Core.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-12-29 03:33:01 +0100
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-12-29 03:33:01 +0100
commit85792dc5fe5ee9d02046f059f7a2c58fbd824026 (patch)
tree89443e7edadcff927011955a9568ec4bb515a717 /XMonad/Core.hs
parentdb02e59c201d2e5f0e2fb3cac18516f42e21dcc4 (diff)
downloadxmonad-85792dc5fe5ee9d02046f059f7a2c58fbd824026.tar.gz
xmonad-85792dc5fe5ee9d02046f059f7a2c58fbd824026.tar.xz
xmonad-85792dc5fe5ee9d02046f059f7a2c58fbd824026.zip
Make focus-follows-mouse configurable
darcs-hash:20071229023301-a5988-7576eb2625061b2dcca3da69d1be4a1e50a76e71.gz
Diffstat (limited to 'XMonad/Core.hs')
-rw-r--r--XMonad/Core.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs
index 3b97ed3..9252b05 100644
--- a/XMonad/Core.hs
+++ b/XMonad/Core.hs
@@ -88,6 +88,7 @@ data XConfig l = XConfig
-- ^ The mouse bindings
, borderWidth :: !Dimension -- ^ The border width
, logHook :: !(X ()) -- ^ The action to perform when the windows set is changed
+ , focusFollowsMouse :: !Bool -- ^ Whether window entry events can change focus
}