Adding killunsel patch

This commit is contained in:
bakkeby
2019-10-05 22:55:46 +02:00
parent a8049d86bb
commit b6928ab1fb
7 changed files with 44 additions and 0 deletions

22
patch/killunsel.c Normal file
View File

@@ -0,0 +1,22 @@
void
killunsel(const Arg *arg)
{
Client *i = NULL;
if (!selmon->sel)
return;
for (i = selmon->clients; i; i = i->next) {
if (ISVISIBLE(i) && i != selmon->sel) {
if (!sendevent(i, wmatom[WMDelete])) {
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);
XSetCloseDownMode(dpy, DestroyAll);
XKillClient(dpy, i->win);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
}
}
}
}