From: Aaron Taylor Date: Wed, 18 Oct 2023 01:33:35 +0000 (-0700) Subject: Reversed direction of keys for switch between monitors to match the physical arrangem... X-Git-Url: http://git.subgeniuskitty.com/dwm/.git/commitdiff_plain/HEAD Reversed direction of keys for switch between monitors to match the physical arrangements of the monitors on my desk. --- 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)