commit af1da9b6aaf8b9ac1f910a90896bc78d3c71a6c3
parent 2c990a27c9d80e6ada3ca27016a087dc847a27e7
Author: nsz@tpx <unknown>
Date: Sun, 27 Sep 2009 11:16:02 +0200
nmaster,push: monitor arg in arrange, +whitespace fixes
Diffstat:
7 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/dwm.suckless.org/patches/attachaside.md b/dwm.suckless.org/patches/attachaside.md
@@ -3,7 +3,7 @@
## Description
Make new client get attached and focused in the stacking area instead of
-always becoming the new master.
+always becoming the new master.
Basically an attachabove mod.
## Example
@@ -22,9 +22,9 @@ Basically an attachabove mod.
New Behaviour :
+-----------------+-------+
- | | |
- | | N |
- | | |
+ | | |
+ | | N |
+ | | |
| P +-------+
| | |
| | |
@@ -37,9 +37,9 @@ Basically an attachabove mod.
| | P |
| | |
| +-------+
- | | |
- | | N |
- | | |
+ | | |
+ | | N |
+ | | |
+-----------------+-------+
## Download
diff --git a/dwm.suckless.org/patches/clientspertag.md b/dwm.suckless.org/patches/clientspertag.md
@@ -28,7 +28,7 @@ in the slave area.
If the argument to 'clientspertag' starts with '^' pressing twice the key
will result on swapping between the defined value and -1.
- * To show all windows put "-1" as argument value.
+ * To show all windows put "-1" as argument value.
* To only display floating windows put "0" as argument.
* For a toggling pair put "^2".
diff --git a/dwm.suckless.org/patches/movestack.md b/dwm.suckless.org/patches/movestack.md
@@ -1,4 +1,4 @@
-# MOVESTACK
+# MOVESTACK
## Description
@@ -15,7 +15,7 @@ movestack(-1) will swap the client with the current focus with the previous clie
#include "movestack.c"
static Key keys[] = {
- /* modifier key function argument */
+ /* modifier key function argument */
...
{ MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
{ MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } },
diff --git a/dwm.suckless.org/patches/nmaster-sym.c b/dwm.suckless.org/patches/nmaster-sym.c
@@ -20,7 +20,7 @@ incnmaster(const Arg *arg) {
nmasters[selmon->num] += arg->i;
if(nmasters[selmon->num] < 0)
nmasters[selmon->num] = 0;
- arrange();
+ arrange(selmon);
}
static void
@@ -28,7 +28,7 @@ setnmaster(const Arg *arg) {
if(!arg || !selmon->lt[selmon->sellt]->arrange || selmon->num >= MaxMon)
return;
nmasters[selmon->num] = arg->i > 0 ? arg->i : 0;
- arrange();
+ arrange(selmon);
}
static void
diff --git a/dwm.suckless.org/patches/nmaster.md b/dwm.suckless.org/patches/nmaster.md
@@ -54,6 +54,6 @@ This feature was dropped from vanilla dwm in version 4.4.
## Download
-* [nmaster-sym.c](nmaster-sym.c) (dwm 5.7) (20090922) - layout symbol shows the number of masters: `n]=`, `TnT`
+* [nmaster-sym.c](nmaster-sym.c) (dwm 5.7.1) (20090927) - layout symbol shows the number of masters: `n]=`, `TnT`
* [nmaster.c](nmaster.c) (dwm 5.6.1) (20090908)
* see older versions in [historical patches](historical)
diff --git a/dwm.suckless.org/patches/push.c b/dwm.suckless.org/patches/push.c
@@ -33,7 +33,7 @@ pushup(const Arg *arg) {
c->next = sel;
}
focus(sel);
- arrange();
+ arrange(selmon);
}
static void
@@ -54,5 +54,5 @@ pushdown(const Arg *arg) {
attach(sel);
}
focus(sel);
- arrange();
+ arrange(selmon);
}
diff --git a/dwm.suckless.org/patches/push.md b/dwm.suckless.org/patches/push.md
@@ -13,4 +13,4 @@
## Download
-* [push.c](push.c) (dwm 5.6.1) (20090709)
+* [push.c](push.c) (dwm 5.7.1) (20090927)