summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-12-13 17:54:26 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-12-13 17:54:26 -0500
commitee16dfb8f38f159011a1c45e8c6ba4b39e267bc9 (patch)
tree5f2c3dfdd968b9d27d39d90749559819c33e26ad /config.h
parenta2b1dfe1ba2309fe6ce615ed02fc6e36efed99e9 (diff)
revert to normal size now just alt-home
Diffstat (limited to 'config.h')
-rw-r--r--config.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/config.h b/config.h
index ba29ff4..8a8fa4a 100644
--- a/config.h
+++ b/config.h
@@ -195,7 +195,6 @@ static MouseShortcut mshortcuts[] = {
/* Internal keyboard shortcuts. */
#define MODKEY Mod1Mask
-#define TERMMOD (ControlMask|ShiftMask)
MouseKey mkeys[] = {
/* button mask function argument */
@@ -219,12 +218,12 @@ static Shortcut shortcuts[] = {
{ XK_ANY_MOD, XK_Print, printsel, {.i = 0} },
{ MODKEY|ShiftMask, XK_Prior, zoom, {.f = +1} },
{ MODKEY|ShiftMask, XK_Next, zoom, {.f = -1} },
- { MODKEY|ShiftMask, XK_Home, zoomreset, {.f = 0} },
+ { MODKEY, XK_Home, zoomreset, {.f = 0} },
{ ShiftMask, XK_Insert, clippaste, {.i = 0} },
{ MODKEY, XK_c, clipcopy, {.i = 0} },
{ MODKEY, XK_v, clippaste, {.i = 0} },
{ MODKEY, XK_p, selpaste, {.i = 0} },
- { TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
+ { MODKEY, XK_Num_Lock, numlock, {.i = 0} },
{ MODKEY, XK_Control_L, iso14755, {.i = 0} },
{ ShiftMask, XK_Page_Up, kscrollup, {.i = -1} },
{ ShiftMask, XK_Page_Down, kscrolldown, {.i = -1} },