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
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-
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
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
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