From 943dec676ff420ea664876ad01d76bdb736efcc2 Mon Sep 17 00:00:00 2001 From: cannoli-fruit Date: Tue, 21 Jul 2026 18:32:37 -0400 Subject: [PATCH] changed shortcuts to use letter keys instead of numbers --- config.def.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/config.def.h b/config.def.h index fe16d30..599ebe7 100644 --- a/config.def.h +++ b/config.def.h @@ -86,15 +86,16 @@ static const Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - TAGKEYS( XK_1, 0) - TAGKEYS( XK_2, 1) - TAGKEYS( XK_3, 2) - TAGKEYS( XK_4, 3) - TAGKEYS( XK_5, 4) - TAGKEYS( XK_6, 5) - TAGKEYS( XK_7, 6) - TAGKEYS( XK_8, 7) - TAGKEYS( XK_9, 8) + TAGKEYS( XK_q, 0) + TAGKEYS( XK_w, 1) + TAGKEYS( XK_e, 2) + TAGKEYS( XK_r, 3) + TAGKEYS( XK_t, 4) + TAGKEYS( XK_y, 5) + TAGKEYS( XK_u, 6) + TAGKEYS( XK_i, 7) + TAGKEYS( XK_o, 8) + TAGKEYS( XK_p, 8) //{ MODKEY|ShiftMask, XK_q, quit, {0} }, };