diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-25 14:55:14 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-25 15:48:53 -0500 |
| commit | 02eed7a92d58f5e50337b4563f92c923df519d61 (patch) | |
| tree | 85d60012248a2d40f34c35f54c9e954a8b2cb25e /config.def.h | |
| parent | 6610e7b79f38eaea12185ff42a93b54dff596047 (diff) | |
| download | tabbed-openbsd.tar.gz | |
Added navigation with arrow keysopenbsd
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 6 |
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") }, |