int screen, sx, sy, sw, sh, th;
DC dc = {0};
-Client *cstart = NULL;
-Client *cend = NULL;
-Client *csel = NULL;
+Client *clients = NULL;
+Client *sel = NULL;
static Bool other_wm_running;
static const char version[] =
static void
cleanup()
{
- while(csel)
- unmanage(csel);
+ while(sel) {
+ resize(sel);
+ unmanage(sel);
+ }
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
}