commit e041c0537e9ccef4c0c5267e297fd51a13614803
Author: FRIGN <[email protected]>
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
@@ -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 - [email protected]
+* Laslo Hunhold - [email protected] (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
@@ -1,13 +0,0 @@
-diff --git a/dwm.c b/dwm.c
-index 1bbb4b3..fe5069d 100644
---- a/dwm.c
-+++ b/dwm.c
-@@ -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
@@ -0,0 +1,13 @@
+diff --git a/dwm.c b/dwm.c
+index b2bc9bd..aa1b407 100644
+--- a/dwm.c
++++ b/dwm.c
+@@ -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
@@ -0,0 +1,13 @@
+diff --git a/dwm.c b/dwm.c
+index 0362114..a5cab76 100644
+--- a/dwm.c
++++ b/dwm.c
+@@ -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);


Reply via email to