t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit ad34abd2bd143529ce05dee82f9f5a1ed47a4fb7
   DIR parent 5953f9ca7143affd7265b8e8cd085935be0fcae2
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Thu, 26 Dec 2019 08:26:24 +0100
       
       font+smallterm
       
       Diffstat:
         M config.h                            |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/config.h b/config.h
       t@@ -79,6 +79,8 @@ static const char *dmenucmd[]    = { "dmenu_run", DMENUOPTS, NULL };
        /* custom commands */
        static const char *termcmd[]       = { "st", NULL };
        static const char *bigtermcmd[]    = { "st","-f", "Terminus-22:bold", NULL };
       +static const char *smalltermcmd[]  = { "st","-f", "ProFont", NULL };
       +
        static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "160x28", NULL };
        static const char *browsercmd[]    = { ".dwm/browser", DMENUOPTS, NULL };
        static const char *passmenucmd[]   = { ".dwm/passmenu", DMENUOPTS, NULL };
       t@@ -101,6 +103,7 @@ static Key keys[] = {
            { MODKEY,              XK_d,       spawn,          {.v = dmenucmd } },
            { MODKEY,              XK_Return,  spawn,          {.v = termcmd } },
            { MODKEY|ShiftMask,    XK_Return,  spawn,          {.v = bigtermcmd } },
       +    { ControlMask|ShiftMask,    XK_Return,  spawn,          {.v = smalltermcmd } },
            { MODKEY|ShiftMask,    XK_f,       spawn,          {.v = browsercmd } },
            { MODKEY|ShiftMask,    XK_p,       spawn,          {.v = passmenucmd } },
            { MODKEY,              XK_p,       spawn,          {.v = preview } },