Re: [dev] compile error in latest hg

2009-05-27 Thread Stefan Pampel
Hello Kris, On Mon, May 25, 2009 at 03:13:54PM -0400, Kris Maglione wrote: > On Mon, May 25, 2009 at 09:01:49PM +0200, Stefan Pampel wrote: >>> On my debian sid I've installed lsb-build-desktop3 which is needed >>> for the new Xft support (rev 2458). It installs a lot of libdevel >>> packages but

Re: [dev] Re: [dwm] How to make R's windows floating?

2009-05-27 Thread yy
2009/5/27 Anselm R Garbe : > Hi, > > the problem is that R sets the properties at a later point (once the > window has been mapped). > > I propose to add the following key handler to your config.h > > static void reapplyrules(const Arg *arg) { >        Client *c; >        for(c = clients; c; c = c-

Re: [dev] Re: [dwm] How to make R's windows floating?

2009-05-27 Thread Donald Chai
An alternative to have things done automagically would be to add the line applyrules(c); after updatetitle(c); in propertynotify() in dwm.c You can then do all sorts of fun things to your windows (dynamically) by momentarily changing their titles. On May 27, 2009, at 1:46 AM

Re: [dev] Re: [dwm] How to make R's windows floating?

2009-05-27 Thread Anselm R Garbe
Hi, the problem is that R sets the properties at a later point (once the window has been mapped). I propose to add the following key handler to your config.h static void reapplyrules(const Arg *arg) { Client *c; for(c = clients; c; c = c->next) applyrules(c); } A

Re: [dev] Re: [dwm] How to make R's windows floating?

2009-05-27 Thread Wu, Yue
On Tue, May 26, 2009 at 03:05:57PM +0200, yy wrote: > 2009/5/26 Jeremy Jay : > > I guess I should have been more explicit: > > > >        { NULL,     NULL,  "R Graphics",      0,            True }, > > > > Then, > > { NULL, NULL, "R", 0,True }, > > should have worke