t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 3a63611e894ce2ae470a16df82fe5027e10278f4
   DIR parent 5555d0405a70d855efd267adc705e461ae4cb591
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Mon,  4 Mar 2019 11:08:43 +0100
       
       Don't resize bar on configurenotify
       
       Test to check if it solves the resolution change crash
       
       Diffstat:
         M dwm.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -694,7 +694,7 @@ configurenotify(XEvent *e) {
                                for(m = mons; m; m = m->next)
                                        XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
                                XMoveResizeWindow(dpy, eb.win, mons->wx, eb.y, mons->ww, bh);
       -                        resizebarwin(m);
       +                        //resizebarwin(m);
                                focus(NULL);
                                arrange(NULL);
                        }