changed shortcut again smh

This commit is contained in:
cannoli-fruit 2026-07-21 19:24:02 -04:00
commit f335b49499

View file

@ -47,6 +47,7 @@ static const Layout layouts[] = {
/* key definitions */ /* key definitions */
#define MODKEY Mod4Mask #define MODKEY Mod4Mask
#define AltMask Mod1Mask
#define TAGKEYS(KEY,TAG) \ #define TAGKEYS(KEY,TAG) \
{ MODKEY|ControlMask, KEY, view, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask, KEY, view, {.ui = 1 << TAG} }, \
/* { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, Idk what that is*/ \ /* { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, Idk what that is*/ \
@ -85,8 +86,8 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_h, focusmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_h, focusmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_l, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_l, focusmon, {.i = +1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ControlMask|ShiftMask, XK_h, tagmon, {.i = -1 } }, { MODKEY|AltMask, XK_h, tagmon, {.i = -1 } },
{ MODKEY|ControlMask|ShiftMask, XK_l, tagmon, {.i = +1 } }, { MODKEY|AltMask, XK_l, tagmon, {.i = +1 } },
TAGKEYS( XK_q, 0) TAGKEYS( XK_q, 0)
TAGKEYS( XK_w, 1) TAGKEYS( XK_w, 1)
TAGKEYS( XK_e, 2) TAGKEYS( XK_e, 2)