summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Rumbaugh <doug@douglasrumbaugh.com>2023-01-25 14:55:14 -0500
committerDouglas Rumbaugh <doug@douglasrumbaugh.com>2023-01-25 15:48:53 -0500
commit02eed7a92d58f5e50337b4563f92c923df519d61 (patch)
tree85d60012248a2d40f34c35f54c9e954a8b2cb25e
parent6610e7b79f38eaea12185ff42a93b54dff596047 (diff)
downloadtabbed-02eed7a92d58f5e50337b4563f92c923df519d61.tar.gz
Added navigation with arrow keysopenbsd
-rw-r--r--config.def.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 45ebbfa..a1b07ac 100644
--- a/config.def.h
+++ b/config.def.h
@@ -56,6 +56,12 @@ static const Key keys[] = {
{ MODKEY, XK_h, rotate, { .i = -1 } },
{ MODKEY|ShiftMask, XK_h, movetab, { .i = -1 } },
{ MODKEY|ShiftMask, XK_l, movetab, { .i = +1 } },
+
+ { MODKEY, XK_Right, rotate, { .i = +1 } },
+ { MODKEY, XK_Left, rotate, { .i = -1 } },
+ { MODKEY|ShiftMask, XK_Left, movetab, { .i = -1 } },
+ { MODKEY|ShiftMask, XK_Right, movetab, { .i = +1 } },
+
{ MODKEY, XK_Tab, rotate, { .i = 0 } },
{ MODKEY, XK_grave, spawn, SETPROP("_TABBED_SELECT_TAB") },