mirror of
https://github.com/xmonad/xmonad.git
synced 2025-08-01 12:41:53 -07:00
Extra config: defaultLayout
This commit is contained in:
@@ -61,6 +61,10 @@ defaultDelta = 3%100
|
|||||||
numlockMask :: KeySym
|
numlockMask :: KeySym
|
||||||
numlockMask = lockMask
|
numlockMask = lockMask
|
||||||
|
|
||||||
|
-- What layout to start in. See the definition of Layout in XMonad.hs for options.
|
||||||
|
defaultLayout :: Layout
|
||||||
|
defaultLayout = Full
|
||||||
|
|
||||||
-- The keys list.
|
-- The keys list.
|
||||||
keys :: M.Map (KeyMask, KeySym) (X ())
|
keys :: M.Map (KeyMask, KeySym) (X ())
|
||||||
keys = M.fromList $
|
keys = M.fromList $
|
||||||
|
2
Main.hs
2
Main.hs
@@ -50,7 +50,7 @@ main = do
|
|||||||
, wmprotocols = wmprot
|
, wmprotocols = wmprot
|
||||||
, dimensions = (displayWidth dpy dflt, displayHeight dpy dflt)
|
, dimensions = (displayWidth dpy dflt, displayHeight dpy dflt)
|
||||||
, workspace = W.empty workspaces
|
, workspace = W.empty workspaces
|
||||||
, layout = Full
|
, layout = defaultLayout
|
||||||
, leftWidth = defaultLeftWidth
|
, leftWidth = defaultLeftWidth
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user