t* My version of sent
       
   URI git clone git://git.codevoid.de/sent-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 9ab88b5935b722021c2aed2d2a417fd83226ff64
   DIR parent fc82374b03b5b2fd9b9770163184d3747a1ccd26
   URI Author: Markus Teich <markus.teich@stusta.mhn.de>
       Date:   Wed,  4 Nov 2015 01:43:13 +0100
       
       make colors configurable
       
       Diffstat:
         M config.def.h                        |       3 +++
         M sent.c                              |       2 +-
       
       2 files changed, 4 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/config.def.h b/config.def.h
       t@@ -8,6 +8,9 @@ static char *fontfallbacks[] = {
        #define NUMFONTSCALES 30
        #define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
        
       +static const char *fgcol = "#000000";
       +static const char *bgcol = "#FFFFFF";
       +
        /* how much screen estate is to be used at max for the content */
        static float usablewidth = 0.75;
        static float usableheight = 0.75;
   DIR diff --git a/sent.c b/sent.c
       t@@ -522,7 +522,7 @@ void xinit()
        
                if (!(d = drw_create(xw.dpy, xw.scr, xw.win, xw.w, xw.h)))
                        die("Can't create drawing context.");
       -        sc = drw_scm_create(d, "#000000", "#FFFFFF");
       +        sc = drw_scm_create(d, fgcol, bgcol);
                drw_setscheme(d, sc);
        
                xloadfonts();