[wiki] [sites] dwm: update alwaysfullscreen patches || FRIGN

From: <git_AT_suckless.org>
Date: Wed, 13 Jul 2016 08:48:19 +0200

commit e041c0537e9ccef4c0c5267e297fd51a13614803
Author: FRIGN <dev_AT_frign.de>
Date: Wed Jul 13 08:47:52 2016 +0200

    dwm: update alwaysfullscreen patches

diff --git a/dwm.suckless.org/patches/alwaysfullscreen.md b/dwm.suckless.org/patches/alwaysfullscreen.md
index ee5fdd6..d0c95d5 100644
--- a/dwm.suckless.org/patches/alwaysfullscreen.md
+++ b/dwm.suckless.org/patches/alwaysfullscreen.md
_AT_@ -10,9 +10,11 @@ using focusstack().
 Download
 --------
 
-* [dwm-alwaysfullscreen-20130827-cdec978.diff](dwm-alwaysfullscreen-20130827-cdec978.diff)
+* [dwm-alwaysfullscreen-6.1.diff](dwm-alwaysfullscreen-6.1.diff)
+* [dwm-alwaysfullscreen-20160713-56a31dc.diff](dwm-alwaysfullscreen-20160713-56a31dc.diff)
 
 Authors
 -------
 
 * Chris Down - chris_AT_chrisdown.name
+* Laslo Hunhold - dev_AT_frign.de (6.1, git ports)
diff --git a/dwm.suckless.org/patches/dwm-alwaysfullscreen-20130827-cdec978.diff b/dwm.suckless.org/patches/dwm-alwaysfullscreen-20130827-cdec978.diff
deleted file mode 100644
index 5a944ca..0000000
--- a/dwm.suckless.org/patches/dwm-alwaysfullscreen-20130827-cdec978.diff
+++ /dev/null
_AT_@ -1,13 +0,0 @@
-diff --git a/dwm.c b/dwm.c
-index 1bbb4b3..fe5069d 100644
---- a/dwm.c
-+++ b/dwm.c
-_AT_@ -829,7 +829,7 @@ void
- focusstack(const Arg *arg) {
- Client *c = NULL, *i;
-
-- if(!selmon->sel)
-+ if(!selmon->sel || selmon->sel->isfullscreen)
- return;
- if(arg->i > 0) {
- for(c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
diff --git a/dwm.suckless.org/patches/dwm-alwaysfullscreen-20160713-56a31dc.diff b/dwm.suckless.org/patches/dwm-alwaysfullscreen-20160713-56a31dc.diff
new file mode 100644
index 0000000..8e3072a
--- /dev/null
+++ b/dwm.suckless.org/patches/dwm-alwaysfullscreen-20160713-56a31dc.diff
_AT_@ -0,0 +1,13 @@
+diff --git a/dwm.c b/dwm.c
+index b2bc9bd..aa1b407 100644
+--- a/dwm.c
++++ b/dwm.c
+_AT_@ -849,7 +849,7 @@ focusstack(const Arg *arg)
+ {
+ Client *c = NULL, *i;
+
+- if (!selmon->sel)
++ if (!selmon->sel || selmon->sel->isfullscreen)
+ return;
+ if (arg->i > 0) {
+ for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
diff --git a/dwm.suckless.org/patches/dwm-alwaysfullscreen-6.1.diff b/dwm.suckless.org/patches/dwm-alwaysfullscreen-6.1.diff
new file mode 100644
index 0000000..19882e6
--- /dev/null
+++ b/dwm.suckless.org/patches/dwm-alwaysfullscreen-6.1.diff
_AT_@ -0,0 +1,13 @@
+diff --git a/dwm.c b/dwm.c
+index 0362114..a5cab76 100644
+--- a/dwm.c
++++ b/dwm.c
+_AT_@ -847,7 +847,7 @@ focusstack(const Arg *arg)
+ {
+ Client *c = NULL, *i;
+
+- if (!selmon->sel)
++ if (!selmon->sel || selmon->sel->isfullscreen)
+ return;
+ if (arg->i > 0) {
+ for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
Received on Wed Jul 13 2016 - 08:48:19 CEST

This archive was generated by hypermail 2.3.0 : Wed Jul 13 2016 - 09:00:15 CEST