diff options
author | Dmitry Astapov <dastapov@gmail.com> | 2009-06-21 23:19:47 +0200 |
---|---|---|
committer | Dmitry Astapov <dastapov@gmail.com> | 2009-06-21 23:19:47 +0200 |
commit | 5975bb73c3b3ec8f3b126de4e3cdd0115810dba0 (patch) | |
tree | b066fc96fc09cada0868fc2068f7cd65106e015d | |
parent | 702fd56574d05897934b1fa195c5d02c2593afd2 (diff) | |
download | XMonadContrib-5975bb73c3b3ec8f3b126de4e3cdd0115810dba0.tar.gz XMonadContrib-5975bb73c3b3ec8f3b126de4e3cdd0115810dba0.tar.xz XMonadContrib-5975bb73c3b3ec8f3b126de4e3cdd0115810dba0.zip |
Expand Tabbed documentation to describe mouse clicks processing
Ignore-this: 185a5dba1c1333aa4a2e778f34417c39
darcs-hash:20090621211947-5701e-cd96a73aef62144221eb6c12f63404653c72740d.gz
-rw-r--r-- | XMonad/Layout/Tabbed.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/XMonad/Layout/Tabbed.hs b/XMonad/Layout/Tabbed.hs index 93ffed2..41aff9c 100644 --- a/XMonad/Layout/Tabbed.hs +++ b/XMonad/Layout/Tabbed.hs @@ -53,6 +53,10 @@ import XMonad.Layout.Simplest ( Simplest(Simplest) ) -- -- > main = xmonad defaultConfig { layoutHook = myLayouts } -- +-- This layout has hardcoded behaviour for mouse clicks on tab decorations: +-- Left click on the tab switches focus to that window. +-- Middle click on the tab closes the window. +-- -- The default Tabbar behaviour is to hide it when only one window is open -- on the workspace. To have it always shown, use one of the layouts or -- modifiers ending in "Always". |