summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-05-01 15:01:58 -0700
committerLuke Smith <luke@lukesmith.xyz>2018-05-01 15:01:58 -0700
commitae9739faedbf43996dd146e321c79747b907d01e (patch)
tree188d7d1570f989fbbabb72e53a60c78259a9b15b /config.h
parentf6ecf743ab44c77af60f96a670fbc9a3da6d8241 (diff)
alt-shift-j/k zoom bindings b/c why not lmao
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index a38b79a..352d249 100644
--- a/config.h
+++ b/config.h
@@ -192,6 +192,10 @@ static Shortcut shortcuts[] = {
{ MODKEY, XK_Down, kscrolldown, {.i = 1} },
{ MODKEY, XK_u, kscrollup, {.i = -1} },
{ MODKEY, XK_d, kscrolldown, {.i = -1} },
+ { MODKEY|ShiftMask, XK_K, zoom, {.f = +1} },
+ { MODKEY|ShiftMask, XK_J, zoom, {.f = -1} },
+ { MODKEY|ShiftMask, XK_U, zoom, {.f = +2} },
+ { MODKEY|ShiftMask, XK_D, zoom, {.f = -2} },
};
/*