t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit c16481ce0e5b8e0692092afaa876896a54076062
   DIR parent 3c4cac91900b912628a134a0d117b74631b95d72
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Wed, 27 Jun 2018 22:20:15 +0200
       
       Refine font and colors
       
       Diffstat:
         M config.h                            |      14 +++++++-------
       
       1 file changed, 7 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/config.h b/config.h
       t@@ -6,16 +6,16 @@ static const unsigned int snap      = 32;       /* snap pixel */
        static const unsigned int systraypinning = 0;   /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
        static const unsigned int systrayspacing = 2;   /* systray spacing */
        static const int systraypinningfailfirst = 1;   /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
       -static const int showsystray        = 1;     /* 0 means no systray */
       +static const int showsystray        = 1;        /* 0 means no systray */
        static const int showbar            = 1;        /* 0 means no bar */
        static const int topbar             = 1;        /* 0 means bottom bar */
        
       -static const char *fonts[]          = { "Fira Mono:size=11" };
       -static const char dmenufont[]       = "Fira Mono:size=11";
       +static const char *fonts[]          = { "Terminus:size=9:embeddedbitmap=true" };
       +static const char dmenufont[]       =   "Terminus:size=9:embeddedbitmap=true";
        
       -static const char col_vdark[]       = "#1c1c1c";
       +static const char col_vdark[]       = "#111111";
        static const char col_dark[]        = "#333333";
       -static const char col_norm[]        = "#666666";
       +static const char col_norm[]        = "#999999";
        static const char col_full[]        = "#eeeeee";
        
        static const char col_gray1[]       = "#222222";
       t@@ -51,8 +51,8 @@ static const Rule rules[] = {
        };
        
        /* layout(s) */
       -static const float mfact     = 0.75; /* factor of master area size [0.05..0.95] */
       -static const int nmaster     = 2;    /* number of clients in master area */
       +static const float mfact     = 0.70; /* factor of master area size [0.05..0.95] */
       +static const int nmaster     = 1;    /* number of clients in master area */
        static const int resizehints = 0;    /* 1 means respect size hints in tiled resizals */
        
        static const Layout layouts[] = {