aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-19 13:17:49 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-19 13:17:49 +0100
commit5d9146ff372ae0c5196e290fb2c1f828d4137e20 (patch)
tree00a169f03b35cf5a62c2e6d765a13c6b12fc74b2 /main.c
parent5cc27f1b3c61df4f048cdac9e0feb31a2dd80c63 (diff)
downloaddwm-5d9146ff372ae0c5196e290fb2c1f828d4137e20.tar.zst
some more refactoring
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main.c b/main.c
index bd19e49..20450db 100644
--- a/main.c
+++ b/main.c
@@ -19,7 +19,7 @@
char stext[256];
int bh, bmw, screen, sx, sy, sw, sh, wax, way, waw, wah;
-unsigned int master, nmaster, ntags, numlockmask;
+unsigned int ntags, numlockmask;
Atom wmatom[WMLast], netatom[NetLast];
Bool running = True;
Bool *seltag;
@@ -133,8 +133,6 @@ setup(void) {
sx = sy = 0;
sw = DisplayWidth(dpy, screen);
sh = DisplayHeight(dpy, screen);
- master = MASTER;
- nmaster = NMASTER;
bmw = textw(TILESYMBOL) > textw(FLOATSYMBOL) ? textw(TILESYMBOL) : textw(FLOATSYMBOL);
/* bar */
dc.h = bh = dc.font.height + 2;