summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2012-12-31 11:44:20 +0100
committerAdam Vogt <vogt.adam@gmail.com>2012-12-31 11:44:20 +0100
commit98f0182c311b02016b6159dd6aa5c9f64dea5c19 (patch)
treeb5bd48761a9a805d1a430a96780773b05b8b5c2f /man
parentaccd7087733c335b47d1282e4e06307366d2e7e4 (diff)
downloadmetatile-98f0182c311b02016b6159dd6aa5c9f64dea5c19.tar
metatile-98f0182c311b02016b6159dd6aa5c9f64dea5c19.zip
Add clickJustFocuses option to template configuration.
Ignore-this: 295732eb045abb30e44a3e15ea830146 darcs-hash:20121231104420-1499c-ea30cf8ca9ab615b7684aa543afcc099b4b41daf
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 2bcd852..ff1394b 100644
--- a/man/xmonad.hs
+++ b/man/xmonad.hs
@@ -23,6 +23,10 @@ myTerminal = "xterm"
myFocusFollowsMouse :: Bool
myFocusFollowsMouse = True
+-- Whether clicking on a window to focus also passes the click to the window
+myClickJustFocuses :: Bool
+myClickJustFocuses = False
+
-- Width of the window border in pixels.
--
myBorderWidth = 1
@@ -255,6 +259,7 @@ defaults = defaultConfig {
-- simple stuff
terminal = myTerminal,
focusFollowsMouse = myFocusFollowsMouse,
+ clickJustFocuses = myClickJustFocuses,
borderWidth = myBorderWidth,
modMask = myModMask,
workspaces = myWorkspaces,