summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-01-26 12:18:05 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2023-01-26 12:18:05 +0100
commitae615dfbeed74ab2a847248045749ea20f9f56d8 (patch)
tree1fb7d50ef7b9cf2f418baab653838cb61a7a3fe1
parenta149c42181675bcde0f2750dabfcf2bab15d158b (diff)
change MOD to ALTHEADmaster
-rw-r--r--config.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/config.h b/config.h
index e70a22e..e563988 100644
--- a/config.h
+++ b/config.h
@@ -189,7 +189,7 @@ static MouseShortcut mshortcuts[] = {
/* Internal keyboard shortcuts. */
#define MODKEY Mod1Mask
-#define TERMMOD (Mod1Mask)
+#define TERMMOD (Mod1Mask|ShiftMask)
static Shortcut shortcuts[] = {
/* mask keysym function argument */
@@ -200,9 +200,12 @@ static Shortcut shortcuts[] = {
{ TERMMOD, XK_Prior, zoom, {.f = +1} },
{ TERMMOD, XK_Next, zoom, {.f = -1} },
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
- { TERMMOD, XK_C, clipcopy, {.i = 0} },
- { TERMMOD, XK_V, clippaste, {.i = 0} },
- { TERMMOD, XK_Y, selpaste, {.i = 0} },
+ { MODKEY, XK_C, clipcopy, {.i = 0} },
+ { MODKEY, XK_V, clippaste, {.i = 0} },
+ { MODKEY, XK_c, clipcopy, {.i = 0} },
+ { MODKEY, XK_v, clippaste, {.i = 0} },
+ { MODKEY, XK_Y, selpaste, {.i = 0} },
+ { MODKEY, XK_y, selpaste, {.i = 0} },
{ ShiftMask, XK_Insert, selpaste, {.i = 0} },
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
{ ShiftMask, XK_Page_Up, kscrollup, {.i = -1} },