diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-06-27 14:46:36 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-06-27 14:46:36 -0400 |
commit | c85793436ddb2282e27b65ba5298e065df1c106f (patch) | |
tree | a420de7507ee05c573266252cec6a0c46ab71455 /.xmonad | |
parent | Add a shortcut to mark threads as read in VM (diff) |
Add a Three Column (Middle) mode to the Web desktop in xmonad
Diffstat (limited to '')
-rw-r--r-- | .xmonad/xmonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 11ff5ad..8ec52d5 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -140,7 +140,7 @@ myXPConfig = defaultXPConfig { myLayout = smartBorders $ toggleLayouts Full perWS where -- Per workspace layout selection. - perWS = onWorkspace "web" (noTitles $ (tabbed shrinkText myTheme ||| mySplit ||| myWide)) $ + perWS = onWorkspace "web" (noTitles $ (tabbed shrinkText myTheme ||| ThreeColMid 1 (3/100) (1/2) ||| mySplit ||| myWide)) $ onWorkspace "term" (noTitles $ (Full ||| myTall2 ||| customRyan)) $ onWorkspace "chatter" (noTitles $ myChat gridFirst) $ onWorkspace "code" (noTitles $ codeFirst) $ |