commit 195dfc8b23e11abeb7bf6b7a8e4bd35f32f99316
Author: FRIGN <dev_AT_frign.de>
Date: Mon Jul 11 22:41:33 2016 +0200
dwm: Update alwaysfullscreen.md
bring it to the new format.
diff --git a/dwm.suckless.org/patches/alwaysfullscreen.md b/dwm.suckless.org/patches/alwaysfullscreen.md
index 9d703b8..ee5fdd6 100644
--- a/dwm.suckless.org/patches/alwaysfullscreen.md
+++ b/dwm.suckless.org/patches/alwaysfullscreen.md
_AT_@ -4,15 +4,15 @@ alwaysfullscreen
Description
-----------
-Do not allow focus to drift from the active fullscreen client when using
-focusstack().
+Do not allow the focus to drift from the active fullscreen client when
+using focusstack().
Download
--------
-* [dwm-alwaysfullscreen-git-20130827-cdec978.diff](dwm-alwaysfullscreen-git-20130827-cdec978.diff) (323b) (20140220)
+* [dwm-alwaysfullscreen-20130827-cdec978.diff](dwm-alwaysfullscreen-20130827-cdec978.diff)
-Author
-------
+Authors
+-------
-* [Chris Down](
https://chrisdown.name) (cdown) <chris_AT_chrisdown.name>
+* Chris Down - chris_AT_chrisdown.name
diff --git a/dwm.suckless.org/patches/dwm-alwaysfullscreen-20130827-cdec978.diff b/dwm.suckless.org/patches/dwm-alwaysfullscreen-20130827-cdec978.diff
new file mode 100644
index 0000000..5a944ca
--- /dev/null
+++ b/dwm.suckless.org/patches/dwm-alwaysfullscreen-20130827-cdec978.diff
_AT_@ -0,0 +1,13 @@
+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-git-20130827-cdec978.diff b/dwm.suckless.org/patches/dwm-alwaysfullscreen-git-20130827-cdec978.diff
deleted file mode 100644
index 5a944ca..0000000
--- a/dwm.suckless.org/patches/dwm-alwaysfullscreen-git-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);
Received on Mon Jul 11 2016 - 22:41:50 CEST