[dev] Fwd: [Bug 650943] Clicking resize grip causes strange mouse grabbing behavior in xmonad

2011-12-09 Thread pancake
Resize gtk3 bug on dwm/monad fixed . Next release will be fine for us :)

[dev] Re: [dwm] [patch] floating window stacking

2011-12-09 Thread Connor Lane Smith
On 10 December 2011 03:07, Connor Lane Smith wrote: > So here are two patches, which implement two possible alternatives. It > would be great if we could apply one of them to tip. I was reminded that some people use a newfangled input device known as the 'mouse'. New patches attached which handle

[dev] [dwm] [patch] floating window stacking

2011-12-09 Thread Connor Lane Smith
Hey all, The dwm home page says "dwm doesn’t distinguish between layers: there is no floating or tiled layer." I've never really known what this means, because floating windows *are* stacked above tiling windows. And I find that really, really annoying. So here are two patches, which implement tw

Re: [dev] [dmenu] bug:

2011-12-09 Thread Connor Lane Smith
Hey, On 9 December 2011 10:19, Suraj N. Kurapati wrote: > On Fri 09 Dec 2011 01:12:52 AM PST, Suraj N. Kurapati wrote: > > -) | exec ${SHELL:-"/bin/sh"} > > +) | exec ${SHELL:-"/bin/sh"} & > > We can remove this outer exec entirely; it's a no-op on my system. I've pushed a fix, -) | exec ${SHEL

Re: [dev] [dmenu] bug:

2011-12-09 Thread Suraj N. Kurapati
On Fri 09 Dec 2011 01:12:52 AM PST, Suraj N. Kurapati wrote: > -) | exec ${SHELL:-"/bin/sh"} > +) | exec ${SHELL:-"/bin/sh"} & We can remove this outer exec entirely; it's a no-op on my system. diff --git a/dmenu_run b/dmenu_run index 35a4db3..2257ce0 100755 --- a/dmenu_run +++ b/dmenu_run @@ -6,

Re: [dev] [dmenu] bug:

2011-12-09 Thread Suraj N. Kurapati
On Thu 08 Dec 2011 09:48:07 PM PST, Kaibin Li wrote: > In current hg tip, after launching a program from dmenu, the process > of dmenu_run will not exit until the program launched by it exits. Good find! Here is my patch to fix the problem. Cheers. diff --git a/dmenu_run b/dmenu_run index 35a4d