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

View File

@ -52,6 +52,10 @@
#include "holdbar.c"
#endif
#if KILLUNSEL_PATCH
#include "killunsel.c"
#endif
#if MAXIMIZE_PATCH
#include "maximize.c"
#endif

View File

@ -52,6 +52,10 @@
#include "holdbar.h"
#endif
#if KILLUNSEL_PATCH
#include "killunsel.h"
#endif
#if MAXIMIZE_PATCH
#include "maximize.h"
#endif

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);
}
}
}
}

1
patch/killunsel.h Normal file
View File

@ -0,0 +1 @@
static void killunsel(const Arg *arg);