Alleviate clashing symbols with XMonad.ManageHook.<||>

This commit is contained in:
Spencer Janssen 2007-11-27 00:42:58 +00:00
parent 2bcef79a1f
commit f18819f306
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ config = defaultConfig
toggleLayouts (noBorders Full) $ -- avoidStruts $
Named "tabbed" (noBorders mytab) |||
Named "xclock" (mytab <-//> combineTwo Square mytab mytab) |||
Named "widescreen" ((mytab <||> mytab)
Named "widescreen" ((mytab XMonad.Layout.LayoutCombinators.<||> mytab)
<-//> combineTwo Square mytab mytab) |||
mosaic 0.25 0.5
, terminal = "xterm" -- The preferred terminal program.

View File

@ -26,7 +26,7 @@ module XMonad.Layout.LayoutCombinators (
import Data.Maybe ( isJust, isNothing )
import XMonad
import XMonad.Core
import XMonad.Layouts ( Tall(..), Mirror(..), ChangeLayout(NextLayout) )
import XMonad.Layout.Combo
import XMonad.Layout.DragPane