t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit b201ae7e7e4413f56c83b519fc6284788009cb50
   DIR parent 749424d9a66bb5a729a1d8102a1dabd83c7c2b68
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Mon, 21 May 2018 21:56:07 +0200
       
       Add big font terminal to mod+shift+enter
       
       And move zoom to mod+m
       
       Diffstat:
         M config.h                            |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/config.h b/config.h
       t@@ -57,6 +57,7 @@ static const Layout layouts[] = {
        static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
        static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
        static const char *termcmd[]  = { "st", NULL };
       +static const char *bigtermcmd[]  = { "st", "-f FuraCode Nerd Font:size=20:antialias=false:autohint=false", NULL };
        static const char *browsercmd[]  = { "/home/sdk/.dwm/browser", NULL };
        
        static Key keys[] = {
       t@@ -64,6 +65,7 @@ static Key keys[] = {
                // application launcher
                { MODKEY,                       XK_d,      spawn,          {.v = dmenucmd } },
                { MODKEY,                       XK_Return, spawn,          {.v = termcmd } },
       +        { MODKEY|ShiftMask,             XK_Return, spawn,          {.v = bigtermcmd } },
                { MODKEY|ShiftMask,             XK_f,      spawn,          {.v = browsercmd } },
        
                // ui modifier
       t@@ -82,7 +84,7 @@ static Key keys[] = {
                { MODKEY,                       XK_Right,  setmfact,       {.f = +0.05} },
        
                // bring focused frame to master area
       -        { MODKEY|ShiftMask,             XK_Return, zoom,           {0} },
       +        { MODKEY,                       XK_m,      zoom,           {0} },
        
                // ???
                { MODKEY,                       XK_Tab,    view,           {0} },