codesite | 1 Jul 2007 20:43
Picon
Favicon

Issue 33 in xmonad: compilation failure (darcs version of July 1, 2007)

Issue 33: compilation failure (darcs version of July 1, 2007)
http://code.google.com/p/xmonad/issues/detail?id=33

New issue report by cstaralgebra:
What steps will reproduce the problem?
1. runhaskell Setup.lhs configure
2. runhasekll Steup.lhs build

What do you see instead?

XMonad.hs:62:5:
    No instance for (Read Rectangle)
      arising from the 'deriving' clause of a data type declaration
      at XMonad.hs:62:5
    Possible fix: add an instance declaration for (Read Rectangle)
    When deriving the instance for `Read ScreenDetail'

Issue attributes:
	Status: New
	Owner: ----
	Labels: Type-Defect Priority-Medium

--

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
codesite | 1 Jul 2007 21:10
Picon
Favicon

Issue 33 in xmonad: compilation failure (darcs version of July 1, 2007)

Issue 33: compilation failure (darcs version of July 1, 2007)
http://code.google.com/p/xmonad/issues/detail?id=33

Comment #1 by cstaralgebra:
OOPS -- forgot to update x11-extras-darcs.  Now working.

--

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
codesite | 1 Jul 2007 21:45
Picon
Favicon

Issue 33 in xmonad: compilation failure (darcs version of July 1, 2007)

Issue 33: compilation failure (darcs version of July 1, 2007)
http://code.google.com/p/xmonad/issues/detail?id=33

Comment #2 by SpencerJanssen:
(No comment was entered for this change.)

Issue attribute updates:
	Status: Invalid

--

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Donald Bruce Stewart | 2 Jul 2007 04:29
Picon
Picon
Favicon
Gravatar

Re: Patch: auto float windows with specific window class hints

lucky:
> Hi!
> 
> This is another hack that makes dialog and dock windows floating by
> default too.
> 
> I suppose, this code is not ready for including into the mainstream.
> It's just set of dirty hacks, what makes Xmonad more comfortable for me.
> 
> > This is nice, perhaps it should go in a contrib module, ahead of the
> > generic 'rules' support -- this would be usefu for user rules.
> > 

Ok. I'll leave this for now then, and use it as the basis for proper
rules support.

Thanks for the patch!

-- Don

> I'm n00b in the haskell and my skills is too scanty for such task now.
> sorry. :(
> 
> --
> Lucky

> diff -rN -u old-xmonad/Operations.hs new-xmonad/Operations.hs
> --- old-xmonad/Operations.hs	2007-06-29 00:07:17.000000000 +0600
> +++ new-xmonad/Operations.hs	2007-06-29 00:07:17.000000000 +0600
>  <at>  <at>  -38,6 +38,9  <at>  <at> 
(Continue reading)

codesite | 3 Jul 2007 14:49
Picon
Favicon

Issue 32 in xmonad: gnome-panel take focus when autohide

Issue 32: gnome-panel take focus when autohide
http://code.google.com/p/xmonad/issues/detail?id=32

Comment #1 by lu...@...:
This patch resolves the issue. But i'm no sure if that breaks something else. %)

--- old-xmonad/Operations.hs    2007-07-03 18:32:00.000000000 +0600
+++ new-xmonad/Operations.hs    2007-07-03 18:32:00.000000000 +0600
 <at>  <at>  -483,7 +495,7  <at>  <at> 
         sw = W.tag . W.workspace $ sc
         bw = fi . wa_border_width $ wa

-    windows $ W.shift sw . W.focusWindow w . W.float w
+    windows $ W.shift sw . W.float w
         (W.RationalRect ((fi (wa_x wa) - fi (rect_x sr)) % fi (rect_width sr))
                         ((fi (wa_y wa) - fi (rect_y sr)) % fi (rect_height sr))
                         (fi (wa_width  wa + bw*2) % fi (rect_width sr))

--

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Andrea Rossato | 3 Jul 2007 18:56

darcs patch: ScreenLayouts.hs: updates to the last API changes

Hi,

it took me sometime to understand what this short piece of code was trying
to do, but after recording, unrecording, reverting and studing and so on and
so forth, there we are. It should be working again.

All that just to emulate a nice xinerama setup for those who cannot afford
a real multihead setup...

ciao
andrea

Tue Jul  3 18:42:09 CEST 2007  Andrea Rossato <andrea.rossato@...>
  * ScreenLayouts.hs: updates to the last API changes
  A silent API change broke this nice piece of David's code: Spencer decided
  to move screen details into StackSet, and there we went to manipulate them!
_______________________________________________
Xmonad mailing list
Xmonad@...
http://www.haskell.org/mailman/listinfo/xmonad
Andrea Rossato | 3 Jul 2007 22:18

[new] darcs patch: ScreenLayouts.hs: updates to the last API changes

hi!

please forget the previous one. sometimes it takes time to relize that:
map (\(x,y) -> f x y) $ zip xs ys
is actually:
zipWith f xs ys

ciao
andrea

Tue Jul  3 22:11:45 CEST 2007  Andrea Rossato <andrea.rossato@...>
  * ScreenLayouts.hs: updates to the last API changes
  A silent API change broke this nice piece of David's code: Spencer decided
  to move screen details into StackSet, and there we went to manipulate them!
_______________________________________________
Xmonad mailing list
Xmonad@...
http://www.haskell.org/mailman/listinfo/xmonad
Spencer Janssen | 3 Jul 2007 22:44
Favicon

Re: [new] darcs patch: ScreenLayouts.hs: updates to the last API changes

On Tue, 3 Jul 2007 22:18:46 +0200
Andrea Rossato <mailing_list@...> wrote:

> hi!
> 
> please forget the previous one. sometimes it takes time to relize
> that: map (\(x,y) -> f x y) $ zip xs ys
> is actually:
> zipWith f xs ys
> 
> ciao
> andrea
> 
> Tue Jul  3 22:11:45 CEST 2007  Andrea Rossato
> <andrea.rossato@...>
>   * ScreenLayouts.hs: updates to the last API changes
>   A silent API change broke this nice piece of David's code: Spencer
> decided to move screen details into StackSet, and there we went to
> manipulate them!

Applied.  Thanks for cleaning up after my wanton API smashing :)

Spencer Janssen
Alec Berryman | 4 Jul 2007 22:11
Gravatar

darcs patch: SimpleStacking: remove note about Xinerama incompatabi...

Wed Jul  4 15:06:26 CDT 2007  Alec Berryman <alec@...>
  * SimpleStacking: remove note about Xinerama incompatability, works fine now
_______________________________________________
Xmonad mailing list
Xmonad@...
http://www.haskell.org/mailman/listinfo/xmonad
Alec Berryman | 4 Jul 2007 22:13
Gravatar

darcs patch: SimpleStacking: -Wall police

Wed Jul  4 15:12:55 CDT 2007  Alec Berryman <alec@...>
  * SimpleStacking: -Wall police
_______________________________________________
Xmonad mailing list
Xmonad@...
http://www.haskell.org/mailman/listinfo/xmonad

Gmane