aboutsummaryrefslogtreecommitdiffstats
path: root/view.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-08 17:33:24 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-08 17:33:24 +0100
commit1d4a24dae02cfb3a3241c3d293e96dba910317bd (patch)
tree52267e4a8de9e198fed15726c20734e7ac735197 /view.c
parenta768ea93fdb3adfa33b3ea7ccc7abfe86a2bfb2a (diff)
downloaddwm-1d4a24dae02cfb3a3241c3d293e96dba910317bd.tar.zst
implemented nmaster appearance in mode label (using %u)
Diffstat (limited to 'view.c')
-rw-r--r--view.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/view.c b/view.c
index f2e4040..2f2d42a 100644
--- a/view.c
+++ b/view.c
@@ -2,6 +2,7 @@
* See LICENSE file for license details.
*/
#include "dwm.h"
+#include <stdio.h>
/* static */
@@ -149,10 +150,15 @@ focusprev(Arg *arg) {
void
incnmaster(Arg *arg) {
- if((nmaster + arg->i < 1) || (wah / (nmaster + arg->i) < bh))
+ if((arrange == dofloat) || (nmaster + arg->i < 1) || (wah / (nmaster + arg->i) < bh))
return;
nmaster += arg->i;
- arrange();
+ snprintf(mtext, sizeof mtext, arrange == dofloat ? FLOATSYMBOL : TILESYMBOL, nmaster);
+ bmw = textw(mtext);
+ if(sel)
+ arrange();
+ else
+ drawstatus();
}
Bool
@@ -218,6 +224,8 @@ togglefloat(Arg *arg) {
void
togglemode(Arg *arg) {
arrange = (arrange == dofloat) ? dotile : dofloat;
+ snprintf(mtext, sizeof mtext, arrange == dofloat ? FLOATSYMBOL : TILESYMBOL, nmaster);
+ bmw = textw(mtext);
if(sel)
arrange();
else