/* extern */
+void
+ban(Client *c) {
+ if(!c || c->isbanned)
+ return;
+ c->isbanned = True;
+ XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+}
+
void
configure(Client *c) {
XConfigureEvent ce;
c->next = clients;
c->snext = stack;
stack = clients = c;
- XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+ ban(c);
XMapWindow(dpy, c->win);
setclientstate(c, NormalState);
if(isvisible(c))