From a67de1bf8cccbfbfd8ebc8230686dcc6bb9fce8e Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Tue, 17 Oct 2023 18:33:35 -0700 Subject: [PATCH] Reversed direction of keys for switch between monitors to match the physical arrangements of the monitors on my desk. --- config.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index 7f8b174..d243f06 100644 --- a/config.h +++ b/config.h @@ -98,10 +98,10 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_0, comboview, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_0, combotag, {.ui = ~0 } }, - { MODKEY, XK_comma, focusmon, {.i = -1 } }, - { MODKEY, XK_period, focusmon, {.i = +1 } }, - { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, - { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, + { MODKEY, XK_comma, focusmon, {.i = +1 } }, + { MODKEY, XK_period, focusmon, {.i = -1 } }, + { MODKEY|ShiftMask, XK_comma, tagmon, {.i = +1 } }, + { MODKEY|ShiftMask, XK_period, tagmon, {.i = -1 } }, { MODKEY, XK_n, nametag, {0} }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) -- 2.20.1