t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit df542075b7db883c5700af6f73c19b87f833e73f
   DIR parent e93d361ffea0794deffed4df793b7f1b51280282
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Mon,  4 Feb 2019 12:15:16 +0100
       
       Fixing the fix for barwinresize
       
       Diffstat:
         M config.h                            |       2 +-
         M dwm.c                               |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/config.h b/config.h
       t@@ -48,7 +48,7 @@ static const Bool resizehints = False; /* True means respect size hints in tiled
        static const Layout layouts[] = {
                /* symbol     arrange function */
                { "[T]",      tile },    /* first entry is default */
       -        //{ "NULL",      NULL },    /* no layout function means floating behavior */
       +        { "NULL",     NULL },    /* no layout function means floating behavior */
                //{ "MONO",      monocle },
        };
        
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -1545,7 +1545,7 @@ resize(Client *c, int x, int y, int w, int h, Bool interact) {
        void
        resizebarwin(Monitor *m) {
            if(m == NULL)
       -        m = 0;
       +        m = selmon;
                unsigned int w = m->ww;
                if(showsystray && m == selmon)
                        w -= getsystraywidth();