JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
using a global stack for focus recovery on arrange() - seems to work great
[dwm.git] / dwm.h
diff --git a/dwm.h b/dwm.h
index eba3a6a..dd536b8 100644 (file)
--- a/dwm.h
+++ b/dwm.h
@@ -61,6 +61,7 @@ struct Client {
        Bool *tags;
        Client *next;
        Client *prev;
+       Client *snext;
        Window win;
        Window twin;
 };
@@ -73,7 +74,7 @@ extern void (*handler[LASTEvent])(XEvent *);
 extern void (*arrange)(Arg *);
 extern Atom wmatom[WMLast], netatom[NetLast];
 extern Bool running, issel, maximized, *seltag;
-extern Client *clients, *sel;
+extern Client *clients, *sel, *stack;
 extern Cursor cursor[CurLast];
 extern DC dc;
 extern Display *dpy;