Mercurial > dwm-meillo
comparison main.c @ 58:1269bd127551
made barclick to select the specific tag
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Fri, 14 Jul 2006 10:34:07 +0200 |
parents | f005d46462e8 |
children | 5d4653de9a1c |
comparison
equal
deleted
inserted
replaced
57:f005d46462e8 | 58:1269bd127551 |
---|---|
250 sh = DisplayHeight(dpy, screen); | 250 sh = DisplayHeight(dpy, screen); |
251 mw = (sw * MASTERW) / 100; | 251 mw = (sw * MASTERW) / 100; |
252 | 252 |
253 wa.override_redirect = 1; | 253 wa.override_redirect = 1; |
254 wa.background_pixmap = ParentRelative; | 254 wa.background_pixmap = ParentRelative; |
255 wa.event_mask = ExposureMask; | 255 wa.event_mask = ButtonPressMask | ExposureMask; |
256 | 256 |
257 bx = by = 0; | 257 bx = by = 0; |
258 bw = sw; | 258 bw = sw; |
259 dc.h = bh = dc.font.height + 4; | 259 dc.h = bh = dc.font.height + 4; |
260 barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen), | 260 barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen), |