aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/Square.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--XMonad/Layout/Square.hs (renamed from Square.hs)12
1 files changed, 6 insertions, 6 deletions
diff --git a/Square.hs b/XMonad/Layout/Square.hs
index 46ad2e7..e05f549 100644
--- a/Square.hs
+++ b/XMonad/Layout/Square.hs
@@ -2,7 +2,7 @@
-----------------------------------------------------------------------------
-- |
--- Module : XMonadContrib.Square
+-- Module : XMonad.Layout.Square
-- Copyright : (c) David Roundy <droundy@darcs.net>
-- License : BSD3-style (see LICENSE)
--
@@ -13,13 +13,13 @@
-- A layout that splits the screen into a square area and the rest of the
-- screen.
-- This is probably only ever useful in combination with
--- "XMonadContrib.Combo".
+-- "XMonad.Layout.Combo".
-- It sticks one window in a square region, and makes the rest
-- of the windows live with what's left (in a full-screen sense).
--
-----------------------------------------------------------------------------
-module XMonadContrib.Square (
+module XMonad.Layout.Square (
-- * Usage
-- $usage
Square(..) ) where
@@ -31,16 +31,16 @@ import XMonad.StackSet ( integrate )
-- $usage
-- You can use this module with the following in your Config.hs file:
--
--- > import XMonadContrib.Square
+-- > import XMonad.Layout.Square
--
--- An example layout using square together with "XMonadContrib.Combo"
+-- An example layout using square together with "XMonad.Layout.Combo"
-- to make the very last area square:
--
-- > , combo (combo (mirror $ twoPane 0.03 0.85),1)] (twoPane 0.03 0.5) )
-- > [(twoPane 0.03 0.2,1),(combo [(twoPane 0.03 0.8,1),(square,1)]
-- > [(tabbed,3),(tabbed,30),(tabbed,1),(tabbed,1)]
--- %import XMonadContrib.Square
+-- %import XMonad.Layout.Square
data Square a = Square deriving ( Read, Show )