aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/NoBorders.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--XMonad/Layout/NoBorders.hs (renamed from NoBorders.hs)10
1 files changed, 5 insertions, 5 deletions
diff --git a/NoBorders.hs b/XMonad/Layout/NoBorders.hs
index a1fdc96..8aa64fb 100644
--- a/NoBorders.hs
+++ b/XMonad/Layout/NoBorders.hs
@@ -2,7 +2,7 @@
-----------------------------------------------------------------------------
-- |
--- Module : XMonadContrib.NoBorders
+-- Module : XMonad.Layout.NoBorders
-- Copyright : (c) David Roundy <droundy@darcs.net>
-- License : BSD3-style (see LICENSE)
--
@@ -17,7 +17,7 @@
--
-----------------------------------------------------------------------------
-module XMonadContrib.NoBorders (
+module XMonad.Layout.NoBorders (
-- * Usage
-- $usage
noBorders,
@@ -30,14 +30,14 @@ import Control.Monad.Reader (asks)
import Graphics.X11.Xlib
import XMonad
-import XMonadContrib.LayoutModifier
+import XMonad.Layout.LayoutModifier
import qualified XMonad.StackSet as W
import Data.List ((\\))
-- $usage
-- You can use this module with the following in your Config.hs file:
--
--- > import XMonadContrib.NoBorders
+-- > import XMonad.Layout.NoBorders
--
-- and modify the layouts to call noBorders on the layouts you want to lack
-- borders
@@ -45,7 +45,7 @@ import Data.List ((\\))
-- > layouts = [ Layout (noBorders Full), ... ]
--
--- %import XMonadContrib.NoBorders
+-- %import XMonad.Layout.NoBorders
-- %layout -- prepend noBorders to default layouts above to remove their borders, like so:
-- %layout , noBorders Full