aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-13 19:55:07 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-13 19:55:07 +0200
commit3aad92202d58208c4197857d3f17c535ba0bd56a (patch)
tree9a1b23fcf9a4f8c0810d6893b217f265ebebfda6 /main.c
parentefa7e514012865fcb3e9ea6e7d5b5c87d84353e5 (diff)
downloaddwm-3aad92202d58208c4197857d3f17c535ba0bd56a.tar.zst
new stuff
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 07e12aa..eff5ce9 100644
--- a/main.c
+++ b/main.c
@@ -33,9 +33,8 @@ Cursor cursor[CurLast];
Bool running = True;
Bool issel;
-char stext[1024];
int tsel = Tdev; /* default tag */
-int screen, sx, sy, sw, sh, th;
+int screen, sx, sy, sw, sh, mw, th;
DC dc = {0};
Client *clients = NULL;
@@ -223,6 +222,7 @@ main(int argc, char *argv[])
sx = sy = 0;
sw = DisplayWidth(dpy, screen);
sh = DisplayHeight(dpy, screen);
+ mw = (sw * MASTERW) / 100;
issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
XSetErrorHandler(0);