diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-24 09:25:10 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-24 09:25:10 +0200 |
commit | 2e834e941f695481894123e0665416f96333653b (patch) | |
tree | 07e0c2bd3c118c513a172443bda276d861df5131 /main.c | |
parent | 77e5f3167c97863ef8e27b6e57fd35ee0c73c8ff (diff) | |
download | dwm-2e834e941f695481894123e0665416f96333653b.tar.gz |
changing tag indicator through underline
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c index 561aa37..5b00d0c 100644 --- a/main.c +++ b/main.c @@ -145,6 +145,7 @@ setup() dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen)); dc.gc = XCreateGC(dpy, root, 0, 0); + XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter); issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask); strcpy(stext, "dwm-"VERSION); |