[Xmonad] Re: Xmonad no longer compile since latest darcs pull

Andrea Rossato mailing_list at istitutocolli.org
Thu Aug 16 03:24:51 EDT 2007


On Thu, Aug 16, 2007 at 07:17:12AM +0000, Xavier Maillard wrote:
>     -- mod-shift-[1..9] @@ Move client to workspace N
>     [((m .|. modMask, k), f i)
>         | (i, k) <- zip [0 .. fromIntegral workspaces - 1] [xK_1 ..]
>         , (f, m) <- [(view, 0), (shift, shiftMask)]]

you are using a wrong version of Config.hs...

BTW, this problem can be solved by changing that list to:

    -- mod-shift-[1..9] @@ Move client to workspace N
    [((m .|. modMask, k), f i)
        | (i, k) <- zip workspaces [xK_1 ..]
        , (f, m) <- [(view, 0), (shift, shiftMask)]]


Andrea


More information about the Xmonad mailing list