summaryrefslogtreecommitdiffstats
path: root/XMonad
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@unibz.it>2007-11-24 15:30:00 +0100
committerAndrea Rossato <andrea.rossato@unibz.it>2007-11-24 15:30:00 +0100
commit9bad4bcfc7e31c86e8e47b8d9fd39e61b818ea1f (patch)
tree2ff50eb8a1872c2a3fac7e78d084d189e727e450 /XMonad
parent8dc98f6420661f32ff64eab7823465d271114f8f (diff)
downloadmetatile-9bad4bcfc7e31c86e8e47b8d9fd39e61b818ea1f.tar
metatile-9bad4bcfc7e31c86e8e47b8d9fd39e61b818ea1f.zip
Move XMonad.Layouts to XMonad.Layout for uniformity with xmc
darcs-hash:20071124143000-32816-91c1de68f8770647c9315c633920fe7b92fab882
Diffstat (limited to 'XMonad')
-rw-r--r--XMonad/Config.hs2
-rw-r--r--XMonad/Layout.hs (renamed from XMonad/Layouts.hs)2
-rw-r--r--XMonad/Operations.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Config.hs b/XMonad/Config.hs
index 7fed47f..b5da4cb 100644
--- a/XMonad/Config.hs
+++ b/XMonad/Config.hs
@@ -27,7 +27,7 @@ import qualified XMonad.Core as XMonad
(workspaces,manageHook,numlockMask,keys,logHook,borderWidth,mouseBindings
,defaultGaps,layoutHook,modMask,terminal,normalBorderColor,focusedBorderColor)
-import XMonad.Layouts
+import XMonad.Layout
import XMonad.Operations
import XMonad.ManageHook
import qualified XMonad.StackSet as W
diff --git a/XMonad/Layouts.hs b/XMonad/Layout.hs
index 5d8d2bd..86622fa 100644
--- a/XMonad/Layouts.hs
+++ b/XMonad/Layout.hs
@@ -15,7 +15,7 @@
--
-----------------------------------------------------------------------------
-module XMonad.Layouts (ChangeLayout(..), Choose, (|||), Resize(..), IncMasterN(..),
+module XMonad.Layout (ChangeLayout(..), Choose, (|||), Resize(..), IncMasterN(..),
Full(..), Tall(..), Mirror(..), mirrorRect, splitVertically,
splitHorizontally, splitHorizontallyBy, splitVerticallyBy) where
diff --git a/XMonad/Operations.hs b/XMonad/Operations.hs
index 0ecc02a..6ed32f4 100644
--- a/XMonad/Operations.hs
+++ b/XMonad/Operations.hs
@@ -19,7 +19,7 @@
module XMonad.Operations where
import XMonad.Core
-import XMonad.Layouts (Full(..))
+import XMonad.Layout (Full(..))
import qualified XMonad.StackSet as W
import Data.Maybe