all repos — dwm @ 9f35cc52fe27f694ce146356e6c71267ecd19217

my dwm build

small fix to separate client title from right-most tag
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 14:46:01 +0200
commit

9f35cc52fe27f694ce146356e6c71267ecd19217

parent

f1fe19bc2b0b1744a82551ef2580e621231cd97e

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M draw.cdraw.c

@@ -94,7 +94,7 @@

void drawstatus() { - static const char *mode[] = { "~", "=" }; + static const char *mode[] = { "~", "|" }; int i, x; dc.x = dc.y = 0;

@@ -114,7 +114,7 @@ drawtext(tags[i], dc.sel, 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) {