aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/LayoutScreens.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2007-11-30 17:54:23 +0100
committerBrent Yorgey <byorgey@gmail.com>2007-11-30 17:54:23 +0100
commit489d005a0e0865f0b1ae50709e1b84dd8fb00aa6 (patch)
tree58dea0e563df43ad577c63444766f58123ea873c /XMonad/Layout/LayoutScreens.hs
parentc33d8e54b5eb651b660bb2493fdc19db49669640 (diff)
downloadXMonadContrib-489d005a0e0865f0b1ae50709e1b84dd8fb00aa6.tar.gz
XMonadContrib-489d005a0e0865f0b1ae50709e1b84dd8fb00aa6.tar.xz
XMonadContrib-489d005a0e0865f0b1ae50709e1b84dd8fb00aa6.zip
LayoutScreens: documentation fix
darcs-hash:20071130165423-bd4d7-abaa13835ff8d6b8b9c9b9fb9c239c5b4cf93a09.gz
Diffstat (limited to 'XMonad/Layout/LayoutScreens.hs')
-rw-r--r--XMonad/Layout/LayoutScreens.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Layout/LayoutScreens.hs b/XMonad/Layout/LayoutScreens.hs
index 7277681..95e11a5 100644
--- a/XMonad/Layout/LayoutScreens.hs
+++ b/XMonad/Layout/LayoutScreens.hs
@@ -36,7 +36,7 @@ import Graphics.X11.Xlib.Extras
-- email window at all times, a crude mimic of sticky windows).
--
-- You can use this module with the following in your Config.hs file:
---
+--
-- > import XMonad.Layout.LayoutScreens
--
-- > , ((modMask .|. shiftMask, xK_space), layoutScreens 2 (TwoPane 0.5 0.5))
@@ -45,11 +45,11 @@ import Graphics.X11.Xlib.Extras
-- Another example use would be to handle a scenario where xrandr didn't
-- work properly (e.g. a VNC X server in my case) and you want to be able
-- to resize your screen (e.g. to match the size of a remote VNC client):
---
+--
-- > import XMonad.Layout.LayoutScreens
--
-- > , ((modMask .|. shiftMask, xK_space),
--- > layoutScreens 1 (fixedLayout $ Rectangle 0 0 1024 768))
+-- > layoutScreens 1 (fixedLayout [Rectangle 0 0 1024 768]))
-- > , ((controlMask .|. modMask .|. shiftMask, xK_space), rescreen)
-- %import XMonad.Layout.LayoutScreens