From ac5a19e806849e6a6a17131c482081d299d16932 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Thu, 31 Jan 2013 11:48:38 +0100 Subject: [PATCH] replace the two panes with tabs layout with a three columns --- xmonad.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xmonad.hs b/xmonad.hs index 16c5c52..85c1f71 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -16,6 +16,7 @@ import XMonad.Layout.TwoPane import XMonad.Layout.Combo import XMonad.Layout.Grid import XMonad.Layout.IM +import XMonad.Layout.ThreeColumns import Data.Ratio ((%)) import XMonad.Layout.PerWorkspace import XMonad.Layout.Maximize @@ -35,10 +36,11 @@ myDefaultLayoutHook = windowNavigation $ desktopLayoutModifiers $ maximize $ -- fullscreen with tabs simpleTabbedAlways -- Two panes, each one with its own tabs - ||| combineTwo (TwoPane 0.03 0.5) simpleTabbed simpleTabbed + -- ||| combineTwo (TwoPane 0.03 0.5) simpleTabbed simpleTabbed -- 2/3 of the screen for a master window, other ones on the right ||| ResizableTall 1 (3/100) (2/3) [] ||| GridRatio (4/3) + ||| ThreeCol 1 (3/100) (1/3) -- buddy lists on a small vertical pane at right, -- master windows on top of the remaining space, other ones below