Re: [dwm] Tabs in dwm

From: y i y u s <yiyu.jgl_AT_gmail.com>
Date: Mon, 26 Feb 2007 13:19:52 +0100

2007/2/26, pancake <pancake_AT_youterm.com>:
> where's the patch?
>

I haven't updated dwm since 3.5, and there are some other patchs which
I would like to send to the list, but probably some change is
neccesary due to new naming in dwm. This is how my restack function
looks like:

 restack(void) {
        Client *c;
        XEvent ev;

        drawstatus();
        if(!sel)
                return;
        if(arrange != dofloat) {
                for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
                        XLowerWindow(dpy, c->win);
                }
        }
        XRaiseWindow(dpy, sel->win);
        XSync(dpy, False);
        while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}

-- 
- yiyus || JGL .
Received on Mon Feb 26 2007 - 13:19:53 UTC

This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 14:38:15 UTC