diff options
author | daniel <daniel@wagner-home.com> | 2008-10-03 03:59:19 +0200 |
---|---|---|
committer | daniel <daniel@wagner-home.com> | 2008-10-03 03:59:19 +0200 |
commit | 96bf979d808d24214ccf18da99b771c291c61251 (patch) | |
tree | bc07d0fecfca2af38304fb0a6017f36ba4b38e3c /XMonad/Layout | |
parent | 1ea0a9e0da9c29518b3e518b0a07ae21bac36cc8 (diff) | |
download | XMonadContrib-96bf979d808d24214ccf18da99b771c291c61251.tar.gz XMonadContrib-96bf979d808d24214ccf18da99b771c291c61251.tar.xz XMonadContrib-96bf979d808d24214ccf18da99b771c291c61251.zip |
minor explanatory comment
darcs-hash:20081003015919-c98ca-c119a6a382a3fe4e90369be073791e44bc55277a.gz
Diffstat (limited to 'XMonad/Layout')
-rw-r--r-- | XMonad/Layout/Grid.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Layout/Grid.hs b/XMonad/Layout/Grid.hs index 87341c8..05af46b 100644 --- a/XMonad/Layout/Grid.hs +++ b/XMonad/Layout/Grid.hs @@ -34,7 +34,8 @@ import XMonad.StackSet -- > main = xmonad defaultConfig { layoutHook = myLayouts } -- -- You can also specify an aspect ratio for Grid to strive for with the --- GridRatio constructor: +-- GridRatio constructor. For example, if you want Grid to try to make a grid +-- four windows wide and three windows tall, you could use -- -- > myLayouts = GridRatio (4/3) ||| etc. -- |