aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/Magnifier.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2007-12-11 02:11:54 +0100
committerBrent Yorgey <byorgey@gmail.com>2007-12-11 02:11:54 +0100
commit874f496009c1a6b91b2fe41fef878bc17bc654e1 (patch)
treeda2b0eb9bbd49ff798edb978bd40921aedeec1df /XMonad/Layout/Magnifier.hs
parent67deb20752c0def3187cac60cf40b3d56cbe9bbe (diff)
downloadXMonadContrib-874f496009c1a6b91b2fe41fef878bc17bc654e1.tar.gz
XMonadContrib-874f496009c1a6b91b2fe41fef878bc17bc654e1.tar.xz
XMonadContrib-874f496009c1a6b91b2fe41fef878bc17bc654e1.zip
Magnifier.hs: minor haddock fixes
darcs-hash:20071211011154-bd4d7-e812320d0138cc5370120fe2d126b1a956957280.gz
Diffstat (limited to '')
-rw-r--r--XMonad/Layout/Magnifier.hs16
1 files changed, 8 insertions, 8 deletions
diff --git a/XMonad/Layout/Magnifier.hs b/XMonad/Layout/Magnifier.hs
index bb9edcb..36e08fd 100644
--- a/XMonad/Layout/Magnifier.hs
+++ b/XMonad/Layout/Magnifier.hs
@@ -35,23 +35,23 @@ import XMonad.Layout.LayoutModifier
--
-- > import XMonad.Layout.Magnifier
--
--- Then edit your @layoutHook@ by adding the Magnifier layout modifier
+-- Then edit your @layoutHook@ by adding the 'magnifier' layout modifier
-- to some layout:
--
-- > myLayouts = magnifier (Tall 1 (3/100) (1/2)) ||| Full ||| etc..
-- > main = xmonad defaultConfig { layoutHook = myLayouts }
---
--- By default magnifier increases the focused windows size by 1.5
--- you can do:
--
--- > magnifiercz (12%10)
+-- By default magnifier increases the focused window's size by 1.5.
+-- You can also use:
--
--- to use a custom level of magification. You can even make the focused
+-- > magnifiercz (12%10)
+--
+-- to use a custom level of magnification. You can even make the focused
-- window smaller for a pop in effect. Keep in mind, you must
--
--- > import Data.Ratio
+-- > import Data.Ratio
--
--- For to use rationals in your config.
+-- in order to use rationals (such as @12%10@) in your config.
--
-- For more detailed instructions on editing the layoutHook see:
--