diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-10-29 08:58:09 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-10-29 08:58:09 -0700 |
| commit | 497c3ae2d00c782e295d94cd172a00d6a2d91227 (patch) | |
| tree | 22fbf50b8f777bb6e7f3dba29cd7cce6730cac22 /xmonad/xmonad.hs | |
| parent | 26b93c0509607a8d29a560c9ce6ebfd177f5eb4e (diff) | |
adjust border rules for fullscreen mainly
Diffstat (limited to 'xmonad/xmonad.hs')
| -rw-r--r-- | xmonad/xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index 54f0e12..347db1b 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -24,6 +24,7 @@ import XMonad.Hooks.StatusBar import XMonad.Hooks.StatusBar.PP import XMonad.Hooks.EwmhDesktops import XMonad.Actions.WindowBringer +import XMonad.Layout.NoBorders (noBorders, smartBorders) -- The preferred terminal program, which is used in a binding below and by -- certain contrib modules. @@ -202,7 +203,7 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList -- The available layouts. Note that each layout is separated by |||, -- which denotes layout choice. -- -myLayout = tiled ||| Full +myLayout = smartBorders tiled ||| noBorders Full where -- default tiling algorithm partitions the screen into two panes tiled = Tall nmaster delta ratio |
