aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/Tabbed.hs
diff options
context:
space:
mode:
authorWirt Wolff <wirtwolff@gmail.com>2009-10-23 06:26:51 +0200
committerWirt Wolff <wirtwolff@gmail.com>2009-10-23 06:26:51 +0200
commitea2a76b1a25b6f605234e52cb6154973f91312a3 (patch)
tree60aaa10ca95015a4d690843df7f0532286c20030 /XMonad/Layout/Tabbed.hs
parente75f0cdb019414deb81f14ff4f73ccd73c6f23b2 (diff)
downloadXMonadContrib-ea2a76b1a25b6f605234e52cb6154973f91312a3.tar.gz
XMonadContrib-ea2a76b1a25b6f605234e52cb6154973f91312a3.tar.xz
XMonadContrib-ea2a76b1a25b6f605234e52cb6154973f91312a3.zip
Docs: use myLayout like template rather than plural
Ignore-this: 8f1814c42e90e18af636a14751ae2f58 Despite myLayouts currently being more popular in examples, make them all myLayout as in man/xmonad.hs to avoid mixing them in the same module as was done a few places, leading to confusion for some users. darcs-hash:20091023042651-18562-48ea1268b6eb92d4b4d50f20aba93cead4652eb1.gz
Diffstat (limited to '')
-rw-r--r--XMonad/Layout/Tabbed.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Layout/Tabbed.hs b/XMonad/Layout/Tabbed.hs
index 5948119..469c5d5 100644
--- a/XMonad/Layout/Tabbed.hs
+++ b/XMonad/Layout/Tabbed.hs
@@ -43,15 +43,15 @@ import XMonad.Layout.Simplest ( Simplest(Simplest) )
--
-- Then edit your @layoutHook@ by adding the Tabbed layout:
--
--- > myLayouts = simpleTabbed ||| Full ||| etc..
+-- > myLayout = simpleTabbed ||| Full ||| etc..
--
-- or, if you want a specific theme for you tabbed layout:
--
--- > myLayouts = tabbed shrinkText defaultTheme ||| Full ||| etc..
+-- > myLayout = tabbed shrinkText defaultTheme ||| Full ||| etc..
--
-- and then:
--
--- > main = xmonad defaultConfig { layoutHook = myLayouts }
+-- > main = xmonad defaultConfig { layoutHook = myLayout }
--
-- This layout has hardcoded behaviour for mouse clicks on tab decorations:
-- Left click on the tab switches focus to that window.