summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2024-08-18 23:11:26 +0400
committerSuleyman Farajli <suleyman@farajli.net>2024-08-18 23:11:26 +0400
commit63c7b3b87990f24df0ce0499743c013ad4e3adc9 (patch)
treee5018378bc8672b0490218bad0dd56be1a6aaa4d /config.h
parentf16e95287f10085605a340b8f8af90834d12d7b1 (diff)
zooming keybinds changed
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index 2e546fe..0c2f334 100644
--- a/config.h
+++ b/config.h
@@ -195,8 +195,8 @@ static Shortcut shortcuts[] = {
{ ControlMask, XK_Print, toggleprinter, {.i = 0} },
{ ShiftMask, XK_Print, printscreen, {.i = 0} },
{ XK_ANY_MOD, XK_Print, printsel, {.i = 0} },
- { TERMMOD, XK_Prior, zoom, {.f = +1} },
- { TERMMOD, XK_Next, zoom, {.f = -1} },
+ { ControlMask, XK_equal, zoom, {.f = +1} },
+ { ControlMask, XK_minus, zoom, {.f = -1} },
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
{ TERMMOD, XK_V, clippaste, {.i = 0} },