diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-04-26 11:58:11 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-04-26 11:58:11 -0400 |
commit | 11160adf7b0cbe6f044c341973b41dea941c719e (patch) | |
tree | e19759f19ab54a7d97817ca75877c224db4b31ad /config.h | |
parent | 18c6a63f865b457b2f6c49c9143bcbaa33b38302 (diff) |
old scratchpad patch removed
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -84,8 +84,6 @@ 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", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; static const char *termcmd[] = { "st", NULL }; -static const char scratchpadname[] = "scratchpad"; -static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL }; #include <X11/XF86keysym.h> #include "shiftview.c" @@ -161,7 +159,7 @@ static Key keys[] = { /* { MODKEY, XK_apostrophe, spawn, SHCMD("") }, */ /* { MODKEY|ShiftMask, XK_apostrophe, spawn, SHCMD("") }, */ { MODKEY, XK_Return, spawn, {.v = termcmd } }, - { MODKEY|ShiftMask, XK_Return, togglescratch, {.v = scratchpadcmd } }, + /* { MODKEY|ShiftMask, XK_Return, togglescratch, {.v = scratchpadcmd } }, */ { MODKEY, XK_z, incrgaps, {.i = +1 } }, { MODKEY|ShiftMask, XK_z, incrgaps, {.i = -1 } }, |