t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 3cb34830eb25ebda15a23d8391fd69cddb4fc024
   DIR parent db2236001c1cb042a2f24052849da96578273b1c
   URI Author: Christopher Drelich <cd@cdrakka.com>
       Date:   Wed, 14 Mar 2018 17:44:53 +0100
       
       ColBorder has been moved to the enum with ColFg and ColBg.
       
       Diffstat:
         M drw.h                               |       2 +-
         M dwm.c                               |       1 -
       
       2 files changed, 1 insertion(+), 2 deletions(-)
       ---
   DIR diff --git a/drw.h b/drw.h
       t@@ -12,7 +12,7 @@ typedef struct Fnt {
                struct Fnt *next;
        } Fnt;
        
       -enum { ColFg, ColBg }; /* Clr scheme index */
       +enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
        typedef XftColor Clr;
        
        typedef struct {
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -56,7 +56,6 @@
        #define HEIGHT(X)               ((X)->h + 2 * (X)->bw)
        #define TAGMASK                 ((1 << LENGTH(tags)) - 1)
        #define TEXTW(X)                (drw_fontset_getwidth(drw, (X)) + lrpad)
       -#define ColBorder               2
        
        /* enums */
        enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */