mirror of
https://github.com/bakkeby/patches
synced 2024-11-13 07:10:31 +00:00
88 lines
2.4 KiB
Diff
88 lines
2.4 KiB
Diff
From c31415e692201cc85976a4147ad7d8d8d1bda8b1 Mon Sep 17 00:00:00 2001
|
|
From: Bakkeby <bakkeby@gmail.com>
|
|
Date: Mon, 10 Jan 2022 13:48:33 +0100
|
|
Subject: [PATCH] tagallmon, move all visible windows to an adjacent monitor
|
|
|
|
---
|
|
config.def.h | 2 ++
|
|
dwm.c | 43 +++++++++++++++++++++++++++++++++++++++++++
|
|
2 files changed, 45 insertions(+)
|
|
|
|
diff --git a/config.def.h b/config.def.h
|
|
index a2ac963..0061425 100644
|
|
--- a/config.def.h
|
|
+++ b/config.def.h
|
|
@@ -85,6 +85,8 @@ static Key keys[] = {
|
|
{ MODKEY, XK_period, focusmon, {.i = +1 } },
|
|
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
|
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
|
|
+ { MODKEY|Mod4Mask|ShiftMask, XK_comma, tagallmon, {.i = +1 } },
|
|
+ { MODKEY|Mod4Mask|ShiftMask, XK_period, tagallmon, {.i = -1 } },
|
|
TAGKEYS( XK_1, 0)
|
|
TAGKEYS( XK_2, 1)
|
|
TAGKEYS( XK_3, 2)
|
|
diff --git a/dwm.c b/dwm.c
|
|
index a96f33c..75dae54 100644
|
|
--- a/dwm.c
|
|
+++ b/dwm.c
|
|
@@ -209,6 +209,7 @@ static void sigchld(int unused);
|
|
static void spawn(const Arg *arg);
|
|
static void tag(const Arg *arg);
|
|
static void tagmon(const Arg *arg);
|
|
+static void tagallmon(const Arg *arg);
|
|
static void tile(Monitor *);
|
|
static void togglebar(const Arg *arg);
|
|
static void togglefloating(const Arg *arg);
|
|
@@ -1674,6 +1675,48 @@ tagmon(const Arg *arg)
|
|
sendmon(selmon->sel, dirtomon(arg->i));
|
|
}
|
|
|
|
+void
|
|
+tagallmon(const Arg *arg)
|
|
+{
|
|
+ Monitor *m;
|
|
+ Client *c, *last, *slast, *next;
|
|
+
|
|
+ if (!mons->next)
|
|
+ return;
|
|
+
|
|
+ m = dirtomon(arg->i);
|
|
+ for (last = m->clients; last && last->next; last = last->next);
|
|
+ for (slast = m->stack; slast && slast->snext; slast = slast->snext);
|
|
+
|
|
+ for (c = selmon->clients; c; c = next) {
|
|
+ next = c->next;
|
|
+ if (!ISVISIBLE(c))
|
|
+ continue;
|
|
+ unfocus(c, 1);
|
|
+ detach(c);
|
|
+ detachstack(c);
|
|
+ c->mon = m;
|
|
+ c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
|
|
+ c->next = NULL;
|
|
+ c->snext = NULL;
|
|
+ if (last)
|
|
+ last = last->next = c;
|
|
+ else
|
|
+ m->clients = last = c;
|
|
+ if (slast)
|
|
+ slast = slast->snext = c;
|
|
+ else
|
|
+ m->stack = slast = c;
|
|
+ if (c->isfullscreen) {
|
|
+ resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
|
|
+ XRaiseWindow(dpy, c->win);
|
|
+ }
|
|
+ }
|
|
+
|
|
+ focus(NULL);
|
|
+ arrange(NULL);
|
|
+}
|
|
+
|
|
void
|
|
tile(Monitor *m)
|
|
{
|
|
--
|
|
2.19.1
|
|
|