xmonad: added spaced layouts
This commit is contained in:
parent
8a5dae719a
commit
4eb087bcad
|
@ -231,9 +231,15 @@ myKeybinds =
|
|||
------------
|
||||
|
||||
-- myLayout :: Choose (ModifiedLayout Spacing Tall) (Choose (Mirror (ModifiedLayout Spacing Tall)) Full) a
|
||||
myLayout = ThreeColMid 1 (3/100) (1/2) ||| spiral (6/7) ||| tiled ||| Mirror tiled ||| Full
|
||||
myLayout = spacedThreeColMid
|
||||
||| spacedSpiral
|
||||
||| tiled
|
||||
||| Mirror tiled
|
||||
||| Full
|
||||
where
|
||||
tiled = spacingWithEdge 5 $ Tall nmaster delta ratio
|
||||
tiled = spacing 3 $ Tall nmaster delta ratio
|
||||
spacedSpiral = spacing 3 $ spiral (6/7)
|
||||
spacedThreeColMid = spacing 3 $ ThreeColMid nmaster delta ratio
|
||||
nmaster = 1
|
||||
ratio = 1 / 2
|
||||
delta = 3 / 100
|
||||
|
|
Loading…
Reference in a new issue