Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
small fix to separate client title from right-most tag
[dwm.git]
/
draw.c
diff --git
a/draw.c
b/draw.c
index
ff6f779
..
7da24f2
100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-94,7
+94,7
@@
drawall()
void
drawstatus()
{
void
drawstatus()
{
- static const char *mode[] = { "~", "
=
" };
+ static const char *mode[] = { "~", "
|
" };
int i, x;
dc.x = dc.y = 0;
int i, x;
dc.x = dc.y = 0;
@@
-114,7
+114,7
@@
drawstatus()
else
drawtext(tags[i], dc.norm, sel && sel->tags[i]);
}
else
drawtext(tags[i], dc.norm, sel && sel->tags[i]);
}
- x = dc.x + dc.w;
+ x = dc.x + dc.w
+ 1
;
dc.w = textw(stext);
dc.x = bx + bw - dc.w;
if(dc.x < x) {
dc.w = textw(stext);
dc.x = bx + bw - dc.w;
if(dc.x < x) {