diff options
| author | Andrew <saintruler@gmail.com> | 2021-01-26 01:52:57 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-01-26 01:52:57 +0400 |
| commit | 23fe8dbf5535d6a4237eaf108b21cacd454f18b3 (patch) | |
| tree | 2ef11e27edd6e9175db6fcf37458797524cc16ca | |
| parent | 22a7482fd165d16a444034df12124dd830ea5d52 (diff) | |
Added gaps between windows in xmonad config
| -rw-r--r-- | .config/xmonad/xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/xmonad/xmonad.hs b/.config/xmonad/xmonad.hs index 6240eb6..9530edd 100644 --- a/.config/xmonad/xmonad.hs +++ b/.config/xmonad/xmonad.hs @@ -24,6 +24,7 @@ import XMonad.Hooks.EwmhDesktops -- Layout import XMonad.Layout.NoBorders +import XMonad.Layout.Spacing -- Utils import XMonad.Util.Run -- (runProcessWithInput, safeSpawn, spawnPipe) @@ -230,7 +231,7 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList $ -- The available layouts. Note that each layout is separated by |||, -- which denotes layout choice. -- -myLayout = tiled ||| Mirror tiled ||| Full +myLayout = spacing 10 $ tiled ||| Mirror tiled ||| Full where -- default tiling algorithm partitions the screen into two panes tiled = Tall nmaster delta ratio |