Problems with magic Focus

Hi, I am trying to make the magic focus extension work. This is from my xmonaf.hs: myLayout = magicFocus tiled ||| layoutHints mtiled ||| Full where mtiled = Mirror tiled -- default tiling algorithm partitions the screen into two panes tiled = Tall nmaster delta ratio -- The default number of windows in the master pane nmaster = 1 -- Default proportion of screen occupied by master pane ratio = 1/2 -- Percent of screen to increment by when resizing panes delta = 3/100 This gives me the following error on startup: xmonad.hs:205:11: Not in scope: `magicFocus' I am using xmonad 0.6 on gentoo. Any advice? Thanks! nathan

On Fri, Apr 11, 2008 at 05:50:59PM +0200, Nathan Huesken wrote:
Hi,
I am trying to make the magic focus extension work. This is from my xmonaf.hs:
myLayout = magicFocus tiled ||| layoutHints mtiled ||| Full where mtiled = Mirror tiled -- default tiling algorithm partitions the screen into two panes tiled = Tall nmaster delta ratio
-- The default number of windows in the master pane nmaster = 1
-- Default proportion of screen occupied by master pane ratio = 1/2
-- Percent of screen to increment by when resizing panes delta = 3/100
This gives me the following error on startup: xmonad.hs:205:11: Not in scope: `magicFocus'
I am using xmonad 0.6 on gentoo.
Any advice?
Thanks! nathan
Hi Nathan, Do you have "import XMonad.Layout.MagicFocus" at the top of your config file? -- Lee Aylward
participants (2)
-
Lee Aylward
-
Nathan Huesken