xmonad: added spaced layouts

This commit is contained in:
Serĉanto de Scio 2022-12-13 07:54:13 +10:00
parent 8a5dae719a
commit 4eb087bcad
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -231,9 +231,15 @@ myKeybinds =
------------ ------------
-- myLayout :: Choose (ModifiedLayout Spacing Tall) (Choose (Mirror (ModifiedLayout Spacing Tall)) Full) a -- 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 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 nmaster = 1
ratio = 1 / 2 ratio = 1 / 2
delta = 3 / 100 delta = 3 / 100