Reversed direction of keys for switch between monitors to match the physical arrangem... master origin/HEAD origin/master
authorAaron Taylor <ataylor@subgeniuskitty.com>
Wed, 18 Oct 2023 01:33:35 +0000 (18:33 -0700)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Wed, 18 Oct 2023 01:33:35 +0000 (18:33 -0700)
config.h

index 7f8b174..d243f06 100644 (file)
--- 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|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)
        { MODKEY,                       XK_n,      nametag,        {0} },
        TAGKEYS(                        XK_1,                      0)
        TAGKEYS(                        XK_2,                      1)