X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=dwm.h;h=dd536b8afaed3042b18853e2209df462c9a505e3;hp=eba3a6adcd8b168f8ad54aed0988362267dd9f3a;hb=15abade2720158fd35dcf59aa2cd5cbb325a849c;hpb=7ab8c8728168234f6b9e99d1be384323d1246b10 diff --git a/dwm.h b/dwm.h index eba3a6a..dd536b8 100644 --- 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;