Extra config: defaultLayout

This commit is contained in:
daniel
2007-03-26 07:42:34 +00:00
parent 1cd2772ca8
commit cb4e6d86a1
2 changed files with 5 additions and 1 deletions

View File

@@ -61,6 +61,10 @@ defaultDelta = 3%100
numlockMask :: KeySym
numlockMask = lockMask
-- What layout to start in. See the definition of Layout in XMonad.hs for options.
defaultLayout :: Layout
defaultLayout = Full
-- The keys list.
keys :: M.Map (KeyMask, KeySym) (X ())
keys = M.fromList $

View File

@@ -50,7 +50,7 @@ main = do
, wmprotocols = wmprot
, dimensions = (displayWidth dpy dflt, displayHeight dpy dflt)
, workspace = W.empty workspaces
, layout = Full
, layout = defaultLayout
, leftWidth = defaultLeftWidth
}