t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 7ba08f0d3026fda7f3879542a15420f63e851728
   DIR parent 85a0fca4734ba778997102ae1ed362fb28dc4cc5
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Fri, 16 Nov 2018 09:28:46 +0100
       
       Remove left/right tag, add work termcmd (mksh)
       
       Diffstat:
         M config.h                            |       8 ++++++--
       
       1 file changed, 6 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/config.h b/config.h
       t@@ -54,7 +54,11 @@ static const Layout layouts[] = {
        
        /* commands */
        static const char *dmenucmd[]    = { "dmenu_run", DMENUOPTS, NULL };
       +#ifdef __linux__
       +static const char *termcmd[]     = { "st", "-e", "mksh", NULL };
       +#else
        static const char *termcmd[]     = { "st", NULL };
       +#endif
        static const char *notescmd[]    = { "st", "-e", "vim", "Seafile/NotesSync/notes.otl", NULL };
        static const char *browsercmd[]  = { ".dwm/browser", DMENUOPTS, NULL };
        static const char *passmenucmd[] = { ".dwm/passmenu", DMENUOPTS, NULL };
       t@@ -99,8 +103,8 @@ static Key keys[] = {
                { MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
                { MODKEY,                       XK_Left,   viewtoleft,     {0} },
                { MODKEY,                       XK_Right,  viewtoright,    {0} },
       -        { MODKEY|ShiftMask,             XK_Left,   tagtoleft,      {0} },
       -        { MODKEY|ShiftMask,             XK_Right,  tagtoright,     {0} },
       +        // { MODKEY|ShiftMask,             XK_Left,   tagtoleft,      {0} },
       +        // { MODKEY|ShiftMask,             XK_Right,  tagtoright,     {0} },
                TAGKEYS(                        XK_1,                      0)
                TAGKEYS(                        XK_2,                      1)
                TAGKEYS(                        XK_3,                      2)