diff options
| -rw-r--r-- | config/xmonad/xmonad.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs index 43017c7..78a490f 100644 --- a/config/xmonad/xmonad.hs +++ b/config/xmonad/xmonad.hs @@ -15,6 +15,7 @@ import XMonad.Util.Dmenu import XMonad.Layout.NoBorders import XMonad.Layout.Spacing import XMonad.Layout.Grid +import XMonad.Layout.Reflect -- Hooks import XMonad.Hooks.InsertPosition @@ -34,10 +35,10 @@ main = xmonad $ desktopConfig } `additionalKeysP` myKeys -myLayouts = mySpacing 4 $ tiledVerticalBigMaster -- bigger master for code and smaller slave for compiling - ||| Mirror tiledHorizontalEven -- 50/50 horizontal split - ||| noBorders Full -- disable borders for fullscreen layout - ||| Grid +myLayouts = mySpacing 4 $ reflectHoriz tiledVerticalBigMaster -- main monitor is slighly to the left + ||| tiledVerticalBigMaster -- bigger master for code and smaller slave for compiling + ||| noBorders Full -- disable borders for fullscreen layout + ||| Mirror tiledHorizontalEven -- 50/50 horizontal split where tiledVerticalBigMaster = Tall 1 (3 / 100) (3 / 5) tiledHorizontalEven = Tall 1 (3 / 100) (1 / 2) mySpacing x = spacingRaw True (Border x x x x) False (Border x x x x) True |
