t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit bae389fbaa1ee3691465ff3e46a013bc67ef52af
   DIR parent b8e83bb6635f7429d0e85a2b6c802916a43a4065
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Fri,  8 Jun 2018 17:10:48 +0200
       
       Improve dual screen support
       
       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@@ -44,7 +44,7 @@ static const Rule rules[] = {
             */
            /* class      instance    title       tags mask     isfloating   monitor */
            { "Gimp",     NULL,       NULL,       0,            1,           -1 },
       -    { "Pidgin",     NULL,       NULL,       0,            1,           -1 },
       +    { "Pidgin",   NULL,       NULL,       0,            1,           -1 },
        };
        
        /* layout(s) */
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -1832,7 +1832,7 @@ sigchld(int unused)
        void
        spawn(const Arg *arg)
        {
       -        if (arg->v == dmenucmd)
       +        if ((arg->v == dmenucmd) || (arg->v == browsercmd) || (arg->v == passmenucmd))
                        dmenumon[0] = '0' + selmon->num;
                if (fork() == 0) {
                        if (dpy)