diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Layout/LayoutCombinators.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Layout/LayoutCombinators.hs b/XMonad/Layout/LayoutCombinators.hs index f9b37fd..1ead505 100644 --- a/XMonad/Layout/LayoutCombinators.hs +++ b/XMonad/Layout/LayoutCombinators.hs @@ -47,8 +47,8 @@ infixr 6 <||>, <//>, <-||>, <-//>, <||->, <//->, <|>, <-|>, <|->, </>, <-/>, </- (<-||>) = combineTwo (dragPane Vertical 0.1 0.2) (<||->) = combineTwo (dragPane Vertical 0.1 0.8) (<//>) = combineTwo (dragPane Horizontal 0.1 0.5) -(<-//>) = combineTwo (dragPane Horizontal 0.1 0.2) -(<//->) = combineTwo (dragPane Horizontal 0.1 0.8) +(<-//>) = combineTwo (dragPane Horizontal 0.1 0.8) +(<//->) = combineTwo (dragPane Horizontal 0.1 0.2) (<|>) = combineTwo (Tall 1 0.1 0.5) (<-|>) = combineTwo (Tall 1 0.1 0.8) (<|->) = combineTwo (Tall 1 0.1 0.1) |