summaryrefslogtreecommitdiffstats
path: root/Operations.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-28 04:02:08 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-28 04:02:08 +0200
commite3edb7d59070b45dac7f04f95c2d494899402d13 (patch)
treeb6b3b52528a57ec68cda657259c0722398853878 /Operations.hs
parentced9efd243c094999d5dfbad14058854ad4306e6 (diff)
downloadmetatile-e3edb7d59070b45dac7f04f95c2d494899402d13.tar
metatile-e3edb7d59070b45dac7f04f95c2d494899402d13.zip
define defaultLayout in Config.hs.
darcs-hash:20070928020208-72aca-ba2fa62ecf40abd9137c9632c7ee27525a62f48e
Diffstat (limited to 'Operations.hs')
-rw-r--r--Operations.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Operations.hs b/Operations.hs
index 180a874..1939ed2 100644
--- a/Operations.hs
+++ b/Operations.hs
@@ -20,7 +20,7 @@ module Operations where
import XMonad
import qualified StackSet as W
-import {-# SOURCE #-} Config (borderWidth,logHook,numlockMask,defaultLayouts,otherPossibleLayouts)
+import {-# SOURCE #-} Config (borderWidth,logHook,numlockMask,possibleLayouts)
import Data.Maybe
import Data.List (nub, (\\), find, partition)
@@ -351,10 +351,10 @@ data ChangeLayout = NextLayout | PrevLayout | JumpToLayout String
instance Message ChangeLayout
instance ReadableSomeLayout Window where
- defaults = SomeLayout (LayoutSelection defaultLayouts) :
+ defaults = SomeLayout (LayoutSelection []) :
SomeLayout Full : SomeLayout (Tall 1 0.1 0.5) :
SomeLayout (Mirror $ Tall 1 0.1 0.5) :
- defaultLayouts ++ otherPossibleLayouts
+ possibleLayouts
data LayoutSelection a = LayoutSelection [SomeLayout a]
deriving ( Show, Read )