diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-06-14 16:35:50 +0200 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-06-14 16:35:50 +0200 |
commit | a220b3ccc5120a25daa1f436d4345ad7dfc30fa8 (patch) | |
tree | 5bf0b0ff288dfe10818351c97ae676003279b99b | |
parent | 979b526746633f37f0693715c7d2a613df85638d (diff) | |
download | XMonadContrib-a220b3ccc5120a25daa1f436d4345ad7dfc30fa8.tar.gz XMonadContrib-a220b3ccc5120a25daa1f436d4345ad7dfc30fa8.tar.xz XMonadContrib-a220b3ccc5120a25daa1f436d4345ad7dfc30fa8.zip |
Circle.hs: info and documentation
darcs-hash:20070614143550-32816-dbb753e8f771f69bc7f0dfb3bdc0df4ac1440415.gz
-rw-r--r-- | Circle.hs | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -1,9 +1,32 @@ -module XMonadContrib.Circle (circle) where -- actually it's an ellipse +----------------------------------------------------------------------------- +-- | +-- Module : XMonadContrib.Circle +-- Copyright : (c) Peter De Wachter +-- License : BSD-style (see LICENSE) +-- +-- Maintainer : Peter De Wachter <pdewacht@gmail.com> +-- Stability : unstable +-- Portability : unportable +-- +-- Circle is an elliptical, overlapping layout, by Peter De Wachter +-- +----------------------------------------------------------------------------- + +module XMonadContrib.Circle ( + -- * Usage + -- $usage + circle + ) where -- actually it's an ellipse import Graphics.X11.Xlib import XMonad import StackSet (integrate) +-- $usage +-- You can use this module with the following in your Config.hs file: +-- +-- > import XMonadContrib.Circle + circle :: Layout circle = Layout { doLayout = \r -> circleLayout r . integrate, modifyLayout = return . const Nothing } |