Re: [dwm] uriel sez the default config is retarded

From: Szabolcs Nagy <nszabolcs_AT_gmail.com>
Date: Tue, 20 Feb 2007 19:40:16 +0100

On 2/11/07, lobzang <lobzang_AT_free.fr> 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
Received on Tue Feb 20 2007 - 19:40:21 UTC

This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 14:37:43 UTC