summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Rumbaugh <doug@douglasrumbaugh.com>2023-01-25 14:55:14 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2023-01-25 23:24:34 -0500
commit973728dcf054549cf7823980d86310daab4a8e9a (patch)
treee6df4f6948fa0686ec3ebc60b9d53e32ffc22405
parent8c407e93cd05c5ca701326cab4a5a2f7b5d5a402 (diff)
downloadtabbed-973728dcf054549cf7823980d86310daab4a8e9a.tar.gz
Added navigation with arrow keysHEADmaster
-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") },