debug: testing
This commit is contained in:
parent
55a116d47b
commit
14b09f656b
1 changed files with 3 additions and 1 deletions
|
@ -11,6 +11,7 @@ import XMonad.Hooks.Modal
|
|||
import XMonad.Hooks.StatusBar
|
||||
import XMonad.Layout.BinarySpacePartition
|
||||
import XMonad.Layout.NoBorders
|
||||
import XMonad.Layout.NoFrillsDecoration
|
||||
import XMonad.Layout.Renamed
|
||||
import XMonad.Layout.Spacing
|
||||
import XMonad.StackSet qualified as W
|
||||
|
@ -210,10 +211,11 @@ myLayouts = myTile ||| myBsp ||| myMax ||| myFull
|
|||
-- our layouts
|
||||
myTile = renamed [Replace "dynamic tiling" ] . avoidStruts . myGaps $ Tall nmaster delta ratio
|
||||
myBsp = renamed [Replace "binary space partition"] . avoidStruts . myGaps $ emptyBSP
|
||||
myMax = renamed [Replace "maximised" ] . avoidStruts . myGaps $ Full
|
||||
myMax = renamed [Replace "maximised" ] . avoidStruts . myGaps . myDeco $ Full
|
||||
myFull = renamed [Replace "fullscreen" ] . noBorders $ Full
|
||||
-- add a configurable amount of space around windows.
|
||||
myGaps = spacingRaw False (Border 10 10 10 10) True (Border 10 10 10 10) True
|
||||
myDeco = noFrillsDeco shrinkText (def { fontName = "Fisa Code" })
|
||||
-- layout configuration
|
||||
nmaster = 1 -- Default number of windows in the master pane
|
||||
ratio = 2/3 -- Default proportion of screen occupied by master pane
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue