diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-01-16 11:33:42 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-01-16 11:33:42 +0100 |
commit | 3c35b90dd3e79e42b115f850dee077eda9816363 (patch) | |
tree | ac5c9362798133e0f1a3b3c052b8fe8807cb3fee /main.c | |
parent | 1d63030665674496930612ef9a272afb6b75c174 (diff) | |
download | dwm-3c35b90dd3e79e42b115f850dee077eda9816363.tar.gz |
removed unnecessary bx, by, bw variables
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/main.c b/main.c index ed055c2..5818838 100644 --- a/main.c +++ b/main.c @@ -19,7 +19,7 @@ char stext[256]; Bool *seltag; -int bx, by, bw, bh, bmw, masterd, screen, sx, sy, sw, sh, wax, way, waw, wah; +int bh, bmw, screen, sx, sy, sw, sh, wax, way, waw, wah; unsigned int master, nmaster, ntags, numlockmask; Atom wmatom[WMLast], netatom[NetLast]; Bool running = True; @@ -136,14 +136,11 @@ setup(void) { nmaster = NMASTER; bmw = textw(TILESYMBOL) > textw(FLOATSYMBOL) ? textw(TILESYMBOL) : textw(FLOATSYMBOL); /* bar */ - bx = sx; - by = sy; - bw = sw; dc.h = bh = dc.font.height + 2; wa.override_redirect = 1; wa.background_pixmap = ParentRelative; wa.event_mask = ButtonPressMask | ExposureMask; - barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen), + barwin = XCreateWindow(dpy, root, sx, sy, sw, bh, 0, DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); XDefineCursor(dpy, barwin, cursor[CurNormal]); |