t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 5555d0405a70d855efd267adc705e461ae4cb591
   DIR parent 05d478d8df54322c6b7f4a149f8493495e8aa5ab
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Tue,  5 Feb 2019 10:06:21 +0100
       
       Attempt to fix the scratchpad becoming tiled
       
       Diffstat:
         M dwm.c                               |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -1999,6 +1999,9 @@ toggleextrabar(const Arg *arg) {
        
        void
        togglefloating(const Arg *arg) {
       +    if (!strcmp(selmon->sel->name, scratchpadname)) {
       +        return;
       +    }
                if(!selmon->sel)
                        return;
                selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;