about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-12-01 15:03:42 +0100
committerarg@mig29 <unknown>2006-12-01 15:03:42 +0100
commit4ba3cfaee9c27744e79febc25caef69b28e477e4 (patch)
tree1244e5d9ccc88b787b9d664647d577b2283e18a9
parente655e8a7d5d81d91444a0fddd9814f6f1ab10e06 (diff)
downloaddwm-4ba3cfaee9c27744e79febc25caef69b28e477e4.tar.gz
less obtrusive indicator (only a top line)
-rw-r--r--draw.c21
-rw-r--r--dwm.12
2 files changed, 5 insertions, 18 deletions
diff --git a/draw.c b/draw.c
index ccd3175..0e399d8 100644
--- a/draw.c
+++ b/draw.c
@@ -30,13 +30,12 @@ textnw(const char *text, unsigned int len) {
 }
 
 static void
-drawtext(const char *text, unsigned long col[ColLast], Bool dot, Bool border) {
+drawtext(const char *text, unsigned long col[ColLast], Bool dot, Bool line) {
 	int x, y, w, h;
 	static char buf[256];
 	unsigned int len, olen;
 	XGCValues gcv;
 	XRectangle r = { dc.x, dc.y, dc.w, dc.h };
-	XPoint pt[5];
 
 	XSetForeground(dpy, dc.gc, col[ColBG]);
 	XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
@@ -75,25 +74,13 @@ drawtext(const char *text, unsigned long col[ColLast], Bool dot, Bool border) {
 		XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
 	}
 	if(dot) {
-		r.x = dc.x + 2;
+		r.x = dc.x + 1;
 		r.y = dc.y + 2;
 		r.width = r.height = (h + 2) / 4;
 		XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
 	}
-	if(border) {
-		pt[0].x = dc.x + 1;
-		pt[0].y = dc.y + 1;
-		pt[1].x = dc.w - 2;
-		pt[1].y = 0;
-		pt[2].x = 0;
-		pt[2].y = dc.h - 2;
-		pt[3].x = -(dc.w - 2);
-		pt[3].y = 0;
-		pt[4].x = 0;
-		pt[4].y = -(dc.h - 2);
-		XDrawLines(dpy, dc.drawable, dc.gc, pt, 5, CoordModePrevious);
-	}
-}
+	if(line)
+		XDrawLine(dpy, dc.drawable, dc.gc, dc.x + 1, dc.y + 1, dc.x + dc.w - 1, dc.y + 1); }
 
 /* extern */
 
diff --git a/dwm.1 b/dwm.1
index 60e5650..c736eb3 100644
--- a/dwm.1
+++ b/dwm.1
@@ -22,7 +22,7 @@ dwm contains a small status bar which displays all available tags, the mode,
 the title of the focused window, and the text read from standard input. The
 selected tags are indicated with a different color. The tags of the focused
 window are indicated with a small point in the top left corner.  The tags which
-are applied to one or more clients are indicated with a border.
+are applied to one or more clients are indicated with a top line.
 .P
 dwm draws a 1-pixel border around windows to indicate the focus state.
 Unfocused windows contain a small bar in front of them displaying their title.
t;dickey@invisible-island.net> 2011-06-11 13:06:08 -0400 committer Thomas E. Dickey <dickey@invisible-island.net> 2011-06-11 13:06:08 -0400 snapshot of project "lynx", label v2-8-8dev_8m' href='/ingrix/lynx-snapshots/commit/src/LYSession.c?id=f06f1fc3d95167ec780cb0963548f2afdd548b20'>f06f1fc3 ^
422b9437 ^
f06f1fc3 ^










422b9437 ^
f06f1fc3 ^


422b9437 ^
f06f1fc3 ^


422b9437 ^
f06f1fc3 ^
























































































































1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267