X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=main.c;h=ba5e2e0a35cc9a2ae79f96f553234c1e48b97e34;hb=92cb5ebb7cb4e6a067474dae94c7a70977194f5d;hp=47749fe3215b2470b979b5076268155449211277;hpb=6a9300e8158ec0c35d92f09e886c653758408948;p=dwm.git diff --git a/main.c b/main.c index 47749fe..ba5e2e0 100644 --- a/main.c +++ b/main.c @@ -17,10 +17,10 @@ /* extern */ -char stext[1024]; +char stext[1024], mtext[32]; Bool *seltag; int bx, by, bw, bh, bmw, masterd, screen, sx, sy, sw, sh, wax, way, waw, wah; -unsigned int master, ntags, numlockmask; +unsigned int master, nmaster, ntags, numlockmask; Atom wmatom[WMLast], netatom[NetLast]; Bool running = True; Bool issel = True; @@ -128,11 +128,12 @@ setup(void) { dc.status[ColFG] = getcolor(STATUSFGCOLOR); setfont(FONT); /* geometry */ - bmw = textw(TILESYMBOL) > textw(FLOATSYMBOL) ? textw(TILESYMBOL) : textw(FLOATSYMBOL); sx = sy = 0; sw = DisplayWidth(dpy, screen); sh = DisplayHeight(dpy, screen); master = MASTER; + nmaster = NMASTER; + updatemodetext(); /* bar */ bx = sx; by = sy;