aboutsummaryrefslogtreecommitdiff
path: root/.repos/dwmold/patches/attachbottom.diff
diff options
context:
space:
mode:
authorMarvin Borner2020-06-12 19:46:15 +0200
committerMarvin Borner2020-06-12 19:46:15 +0200
commit88565e120f0564f2354925617a83f1496353bb8d (patch)
treee95f8ae9f0f15665262dd7ec71d2bf154af34d3e /.repos/dwmold/patches/attachbottom.diff
parent425098cd34c74beb38ccb3a13a78ec74f342bc22 (diff)
Clean-up
Diffstat (limited to '.repos/dwmold/patches/attachbottom.diff')
-rw-r--r--.repos/dwmold/patches/attachbottom.diff60
1 files changed, 0 insertions, 60 deletions
diff --git a/.repos/dwmold/patches/attachbottom.diff b/.repos/dwmold/patches/attachbottom.diff
deleted file mode 100644
index 71d092f..0000000
--- a/.repos/dwmold/patches/attachbottom.diff
+++ /dev/null
@@ -1,60 +0,0 @@
-Binary files dwm/drw.o and dwm.patched/drw.o differ
-Binary files dwm/dwm and dwm.patched/dwm differ
-diff -ruN dwm/dwm.c dwm.patched/dwm.c
---- dwm/dwm.c 2018-05-22 20:05:47.208417141 -0700
-+++ dwm.patched/dwm.c 2018-06-20 15:08:07.380496725 -0700
-@@ -147,6 +147,7 @@
- static void arrange(Monitor *m);
- static void arrangemon(Monitor *m);
- static void attach(Client *c);
-+static void attachbelow(Client *c);
- static void attachstack(Client *c);
- static void buttonpress(XEvent *e);
- static void checkotherwm(void);
-@@ -407,6 +408,17 @@
- }
-
- void
-+attachbelow(Client *c)
-+{
-+ Client *below = c->mon->clients;
-+ for (; below && below->next; below = below->next);
-+ if (below)
-+ below->next = c;
-+ else
-+ c->mon->clients = c;
-+}
-+
-+void
- attachstack(Client *c)
- {
- c->snext = c->mon->stack;
-@@ -1065,7 +1077,7 @@
- c->isfloating = c->oldstate = trans != None || c->isfixed;
- if (c->isfloating)
- XRaiseWindow(dpy, c->win);
-- attach(c);
-+ attachbelow(c);
- attachstack(c);
- XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
- (unsigned char *) &(c->win), 1);
-@@ -1420,7 +1432,7 @@
- detachstack(c);
- c->mon = m;
- c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
-- attach(c);
-+ attachbelow(c);
- attachstack(c);
- focus(NULL);
- arrange(NULL);
-@@ -1900,7 +1912,7 @@
- m->clients = c->next;
- detachstack(c);
- c->mon = mons;
-- attach(c);
-+ attachbelow(c);
- attachstack(c);
- }
- if (m == selmon)
-Binary files dwm/dwm.o and dwm.patched/dwm.o differ
-Binary files dwm/util.o and dwm.patched/util.o differ