t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 2ebef165079aefb3db533dd9a6d1dfa32f6a1915
   DIR parent 44c8d3bc84c92a1cd0f2b04fb0c2ac39960f0424
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Fri,  3 May 2019 09:32:24 +0200
       
       Draw active tag indicator with exact tag width
       
       Diffstat:
         M dwm.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -859,7 +859,7 @@ drawbar(Monitor *m)
                        drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
                        drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
                        if (occ & 1 << i)
       -                        drw_rect(drw, x + boxs, boxs, boxw, boxw,
       +                        drw_rect(drw, x + boxw + 7, 0, (w - ( 2 * boxw)) - 14, boxw / 2,
                                        m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
                                        urg & 1 << i);
                        x += w;