diff options
-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. |