On Wed, Jul 15, 2009 at 06:48:25PM +0200, Moritz Lipp wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Hello,
> I have adapted some patches for dwm 5.6 yesterday, amongst that also
> pertag and bstack, but I did not had the time to test them well. Since you
> have added your patches, I will just add the others I've edited: 
> gaplessgrid,
> grid, push and tilemovemouse.

Thanks! Attached is an update of the very simple focusurgent patch.
void 
focusurgent(Arg *x) {
	Client *c;
	for(c = selmon->stack; c && !(c->isurgent); c = c->snext);
	if(c) { 
		Arg a;
		a.ui=c->tags;
		view(&a);
		focus(c);
	}
}

Reply via email to