diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-11-21 19:17:10 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-11-21 19:17:10 +0100 |
commit | fa9727f1d45a4e508b19d6895816f367ab3d4e91 (patch) | |
tree | 42aad2a601088351f6d7a4061f5a783ca0937adf /XMonad/Layout | |
parent | 90b62a21d21fd1e1dddd179ee15dd08f5786feeb (diff) | |
download | XMonadContrib-fa9727f1d45a4e508b19d6895816f367ab3d4e91.tar.gz XMonadContrib-fa9727f1d45a4e508b19d6895816f367ab3d4e91.tar.xz XMonadContrib-fa9727f1d45a4e508b19d6895816f367ab3d4e91.zip |
Tabbed: haddock fixes
darcs-hash:20071121181710-32816-c665f9950da92bf196b26b62472573c8ae111a85.gz
Diffstat (limited to 'XMonad/Layout')
-rw-r--r-- | XMonad/Layout/Tabbed.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/XMonad/Layout/Tabbed.hs b/XMonad/Layout/Tabbed.hs index 8547045..5889f93 100644 --- a/XMonad/Layout/Tabbed.hs +++ b/XMonad/Layout/Tabbed.hs @@ -40,16 +40,17 @@ import XMonad.Util.XUtils import XMonad.Util.Font -- $usage --- You can use this module with the following in your configuration file: +-- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@: -- -- > import XMonad.Layout.Tabbed -- -- Then edit your @layoutHook@ by adding the Tabbed layout: -- --- > mylayout = tabbed shrinkText defaultTConf ||| Full ||| etc.. --- > main = xmonad dafaultConfig { layoutHook = mylayouts } +-- > myLayouts = tabbed shrinkText defaultTConf ||| Full ||| etc.. +-- > main = xmonad dafaultConfig { layoutHook = myLayouts } -- -- For more detailed instructions on editing the layoutHook see: +-- -- "XMonad.Doc.Extending#Editing_the_layout_hook" -- -- You can also edit the default configuration options. |