less obtrusive indicator (only a top line)
4ba3cfae
2 file(s) · +5 −18
| 30 | 30 | } |
|
| 31 | 31 | ||
| 32 | 32 | static void |
|
| 33 | - | drawtext(const char *text, unsigned long col[ColLast], Bool dot, Bool border) { |
|
| 33 | + | drawtext(const char *text, unsigned long col[ColLast], Bool dot, Bool line) { |
|
| 34 | 34 | int x, y, w, h; |
|
| 35 | 35 | static char buf[256]; |
|
| 36 | 36 | unsigned int len, olen; |
|
| 37 | 37 | XGCValues gcv; |
|
| 38 | 38 | XRectangle r = { dc.x, dc.y, dc.w, dc.h }; |
|
| 39 | - | XPoint pt[5]; |
|
| 40 | 39 | ||
| 41 | 40 | XSetForeground(dpy, dc.gc, col[ColBG]); |
|
| 42 | 41 | XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1); |
|
| 75 | 74 | XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len); |
|
| 76 | 75 | } |
|
| 77 | 76 | if(dot) { |
|
| 78 | - | r.x = dc.x + 2; |
|
| 77 | + | r.x = dc.x + 1; |
|
| 79 | 78 | r.y = dc.y + 2; |
|
| 80 | 79 | r.width = r.height = (h + 2) / 4; |
|
| 81 | 80 | XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1); |
|
| 82 | 81 | } |
|
| 83 | - | if(border) { |
|
| 84 | - | pt[0].x = dc.x + 1; |
|
| 85 | - | pt[0].y = dc.y + 1; |
|
| 86 | - | pt[1].x = dc.w - 2; |
|
| 87 | - | pt[1].y = 0; |
|
| 88 | - | pt[2].x = 0; |
|
| 89 | - | pt[2].y = dc.h - 2; |
|
| 90 | - | pt[3].x = -(dc.w - 2); |
|
| 91 | - | pt[3].y = 0; |
|
| 92 | - | pt[4].x = 0; |
|
| 93 | - | pt[4].y = -(dc.h - 2); |
|
| 94 | - | XDrawLines(dpy, dc.drawable, dc.gc, pt, 5, CoordModePrevious); |
|
| 95 | - | } |
|
| 96 | - | } |
|
| 82 | + | if(line) |
|
| 83 | + | XDrawLine(dpy, dc.drawable, dc.gc, dc.x + 1, dc.y + 1, dc.x + dc.w - 1, dc.y + 1); } |
|
| 97 | 84 | ||
| 98 | 85 | /* extern */ |
|
| 99 | 86 | ||
| 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 border. |
|
| 25 | + | are applied to one or more clients are indicated with a top line. |
|
| 26 | 26 | .P |
|
| 27 | 27 | dwm draws a 1-pixel border around windows to indicate the focus state. |
|
| 28 | 28 | Unfocused windows contain a small bar in front of them displaying their title. |