X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=client.c;h=68d10a7333402f402fc317221f55120a4f4f9dd8;hb=f2190c8fc21a7d2408b3025ad92c853c035351cc;hp=06bc9d88feb773e790c60f87a9326de15863ce68;hpb=5a1a2edf0e584e660e16d2e01094851e0f9161e2;p=dwm.git diff --git a/client.c b/client.c index 06bc9d8..68d10a7 100644 --- a/client.c +++ b/client.c @@ -96,6 +96,14 @@ attach(Client *c) { clients = c; } +void +ban(Client *c) { + if (c->isbanned) + return; + XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); + c->isbanned = True; +} + void configure(Client *c) { XConfigureEvent ce; @@ -298,6 +306,37 @@ togglefloating(const char *arg) { lt->arrange(); } +void +unban(Client *c) { + if (!c->isbanned) + return; + XMoveWindow(dpy, c->win, c->x, c->y); + c->isbanned = False; +} + +void +unmanage(Client *c) { + XWindowChanges wc; + + wc.border_width = c->oldborder; + /* The server grab construct avoids race conditions. */ + XGrabServer(dpy); + XSetErrorHandler(xerrordummy); + XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */ + detach(c); + detachstack(c); + if(sel == c) + focus(NULL); + XUngrabButton(dpy, AnyButton, AnyModifier, c->win); + setclientstate(c, WithdrawnState); + free(c->tags); + free(c); + XSync(dpy, False); + XSetErrorHandler(xerror); + XUngrabServer(dpy); + lt->arrange(); +} + void updatesizehints(Client *c) { long msize; @@ -376,26 +415,3 @@ updatetitle(Client *c) { c->name[sizeof c->name - 1] = '\0'; XFree(name.value); } - -void -unmanage(Client *c) { - XWindowChanges wc; - - wc.border_width = c->oldborder; - /* The server grab construct avoids race conditions. */ - XGrabServer(dpy); - XSetErrorHandler(xerrordummy); - XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */ - detach(c); - detachstack(c); - if(sel == c) - focus(NULL); - XUngrabButton(dpy, AnyButton, AnyModifier, c->win); - setclientstate(c, WithdrawnState); - free(c->tags); - free(c); - XSync(dpy, False); - XSetErrorHandler(xerror); - XUngrabServer(dpy); - lt->arrange(); -}