diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-25 15:48:44 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-25 15:48:44 +0200 |
commit | e995c1b5325f88d197675950c15762d001dd80ef (patch) | |
tree | 972031f4a7c0736cd56a88366d143204a2660d0b /main.c | |
parent | e36929292e08d03c496c8134f2d29c069a45dc2c (diff) | |
download | dwm-e995c1b5325f88d197675950c15762d001dd80ef.tar.gz |
trying a different configuration
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c index d2da0c1..5dab0db 100644 --- a/main.c +++ b/main.c @@ -19,8 +19,8 @@ char stext[1024]; Bool *seltag; -int screen, sx, sy, sw, sh, bx, by, bw, bh, mw; -unsigned int ntags, numlockmask, modew; +int bx, by, bw, bh, bmw, mw, screen, sx, sy, sw, sh; +unsigned int ntags, numlockmask; Atom wmatom[WMLast], netatom[NetLast]; Bool running = True; Bool issel = True; @@ -129,7 +129,7 @@ setup() dc.status[ColFG] = getcolor(STATUSFGCOLOR); setfont(FONT); - modew = textw(FLOATSYMBOL) > textw(TILESYMBOL) ? textw(FLOATSYMBOL) : textw(TILESYMBOL); + bmw = textw(FLOATSYMBOL) > textw(TILESYMBOL) ? textw(FLOATSYMBOL) : textw(TILESYMBOL); sx = sy = 0; sw = DisplayWidth(dpy, screen); sh = DisplayHeight(dpy, screen); |