diff options
author | Brent Yorgey <byorgey@gmail.com> | 2007-11-30 17:54:23 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2007-11-30 17:54:23 +0100 |
commit | 489d005a0e0865f0b1ae50709e1b84dd8fb00aa6 (patch) | |
tree | 58dea0e563df43ad577c63444766f58123ea873c | |
parent | c33d8e54b5eb651b660bb2493fdc19db49669640 (diff) | |
download | XMonadContrib-489d005a0e0865f0b1ae50709e1b84dd8fb00aa6.tar.gz XMonadContrib-489d005a0e0865f0b1ae50709e1b84dd8fb00aa6.tar.xz XMonadContrib-489d005a0e0865f0b1ae50709e1b84dd8fb00aa6.zip |
LayoutScreens: documentation fix
darcs-hash:20071130165423-bd4d7-abaa13835ff8d6b8b9c9b9fb9c239c5b4cf93a09.gz
-rw-r--r-- | XMonad/Layout/LayoutScreens.hs | 6 |
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 |