[wiki] [sites] [dwm][patch][push] update for dwm 6.4 || Matt Nakama

From: <git_AT_suckless.org>
Date: Fri, 17 Feb 2023 06:06:28 +0100

commit c4cbd9f3092efcd533f35d629874e270fe28c053
Author: Matt Nakama <matt+git_AT_mattnakama.com>
Date: Fri Feb 17 00:01:59 2023 -0500

    [dwm][patch][push] update for dwm 6.4

diff --git a/dwm.suckless.org/patches/push/dwm-push_no_master-6.4.diff b/dwm.suckless.org/patches/push/dwm-push_no_master-6.4.diff
new file mode 100644
index 00000000..11f76a2f
--- /dev/null
+++ b/dwm.suckless.org/patches/push/dwm-push_no_master-6.4.diff
_AT_@ -0,0 +1,70 @@
+diff --git a/dwm.c b/dwm.c
+index e5efb6a..660a8ac 100644
+--- a/dwm.c
++++ b/dwm.c
+_AT_@ -186,7 +186,10 @@ static void motionnotify(XEvent *e);
+ static void movemouse(const Arg *arg);
+ static Client *nexttiled(Client *c);
+ static void pop(Client *c);
++static Client *prevtiled(Client *c);
+ static void propertynotify(XEvent *e);
++static void pushdown(const Arg *arg);
++static void pushup(const Arg *arg);
+ static void quit(const Arg *arg);
+ static Monitor *recttomon(int x, int y, int w, int h);
+ static void resize(Client *c, int x, int y, int w, int h, int interact);
+_AT_@ -1209,6 +1212,16 @@ pop(Client *c)
+ arrange(c->mon);
+ }
+
++Client *
++prevtiled(Client *c) {
++ Client *p, *r;
++
++ for(p = selmon->clients, r = NULL; p && p != c; p = p->next)
++ if(!p->isfloating && ISVISIBLE(p))
++ r = p;
++ return r;
++}
++
+ void
+ propertynotify(XEvent *e)
+ {
+_AT_@ -1246,6 +1259,37 @@ propertynotify(XEvent *e)
+ }
+ }
+
++void
++pushdown(const Arg *arg) {
++ Client *sel = selmon->sel, *c;
++
++ if(!sel || sel->isfloating || sel == nexttiled(selmon->clients))
++ return;
++ if((c = nexttiled(sel->next))) {
++ detach(sel);
++ sel->next = c->next;
++ c->next = sel;
++ }
++ focus(sel);
++ arrange(selmon);
++}
++
++void
++pushup(const Arg *arg) {
++ Client *sel = selmon->sel, *c;
++
++ if(!sel || sel->isfloating)
++ return;
++ if((c = prevtiled(sel)) && c != nexttiled(selmon->clients)) {
++ detach(sel);
++ sel->next = c;
++ for(c = selmon->clients; c->next != sel->next; c = c->next);
++ c->next = sel;
++ }
++ focus(sel);
++ arrange(selmon);
++}
++
+ void
+ quit(const Arg *arg)
+ {
diff --git a/dwm.suckless.org/patches/push/index.md b/dwm.suckless.org/patches/push/index.md
index b1c103dd..10cb05bd 100644
--- a/dwm.suckless.org/patches/push/index.md
+++ b/dwm.suckless.org/patches/push/index.md
_AT_@ -24,6 +24,7 @@ Download
 * [dwm-push\_no\_master-6.0.diff](dwm-push_no_master-6.0.diff)
 * [dwm-push\_no\_master-6.1.diff](dwm-push_no_master-6.1.diff) - 2015/11/21
 * [dwm-push\_no\_master-6.2.diff](dwm-push_no_master-6.2.diff) - 2020/03/08
+* [dwm-push\_no\_master-6.4.diff](dwm-push_no_master-6.4.diff) - 2023/02/16
 
 Note
 ----
_AT_@ -35,4 +36,4 @@ Author
 * Updated regular version for 6.2 (61bb8b2) Alex Cole <ajzcole_AT_airmail.cc>
 * Updated by Jan Christoph Ebersbach <jceb_AT_e-jc.de>
 * push\_no\_master by Jente Hidskes <jthidskes_AT_outlook.com>
-
+* Updated push\_no\_master for 6.4 Matt Nakama <matt+suckless_AT_mattnakama.com>
Received on Fri Feb 17 2023 - 06:06:28 CET

This archive was generated by hypermail 2.3.0 : Fri Feb 17 2023 - 06:12:50 CET