final indicators a678ee63
arg@mig29 · 2006-12-01 12:25 2 file(s) · +3 −4
draw.c +2 −2
75 75
		XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
76 76
	}
77 77
	if(dot) {
78 +
		r.x = dc.x + 2;
79 +
		r.y = dc.y + 2;
78 80
		r.width = r.height = (h + 2) / 4;
79 -
		r.x = dc.x + dc.w - r.width - 2;
80 -
		r.y = dc.y + dc.h - r.height - 2;
81 81
		XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
82 82
	}
83 83
	if(border) {
dwm.1 +1 −2
22 22
the title of the focused window, and the text read from standard input. The
23 23
selected tags are indicated with a different color. The tags of the focused
24 24
window are indicated with a small point in the top left corner.  The tags which
25 -
are applied to one or more clients are indicated with a small point in the bottom
26 -
right corner.
25 +
are applied to one or more clients are indicated with a pseudo-3d border.
27 26
.P
28 27
dwm draws a 1-pixel border around windows to indicate the focus state.
29 28
Unfocused windows contain a small bar in front of them displaying their title.