true fullsceen layout + maximized

This commit is contained in:
♥ Minnie ♥ 2024-01-29 22:33:38 +08:00
parent 65579fb12c
commit 3705924da8

View file

@ -75,13 +75,14 @@ myKeys =
]
-- | Layouts
myLayout = tiled ||| full
myLayout = tiled ||| max ||| full
where
-- Add a configurable amount of space around windows.
gaps = spacingRaw False (Border 10 10 10 10) True (Border 10 10 10 10) True
-- Our layouts
tiled = renamed [Replace "Spacing Tiled"] . avoidStruts . gaps $ Tall nmaster delta ratio
full = renamed [Replace "Fullscreen"] $ noBorders Full
max = renamed [Replace "Maximized" ] . avoidStruts . gaps $ Full
full = renamed [Replace "Fullscreen" ] . noBorders $ Full
-- Layout settings
nmaster = 1 -- Default number of windows in the master pane
ratio = 1/2 -- Default proportion of screen occupied by master pane