On 2/11/07, lobzang <[EMAIL PROTECTED]> wrote:
Hi,
I'm interested in the togglemax funcionnality , however I was unable to
use it ... did you patch dwm ?
On Fri, 2007-02-09 at 15:06 +0100, Szabolcs Nagy wrote:
> { MODKEY, XK_m, togglemax, { 0 } }, \
well, iirc old dwm had togglemax(Arg *) function, but this
functionality is now removed (static void togglemax(Client*) is only
used when zooming float windows)
i don't know why but there is some reasoning behind it for sure
anyway if you want togglemax, then you can create a simple function in view.c:
void
dotogglemax(Arg* a){
togglemax(sel);
}
also add a declaration in dwm.h:
void dotogglemax(Arg* a);
and then you can use it in your config.h