From 27fe1f5c15ad494c48a3e4d43b0a41bb118c8720 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Tue, 2 Sep 2025 11:30:24 +0700 Subject: [PATCH] Change key shortcut for Pin current window to all tags --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index ecc530a..b1e9aad 100644 --- a/config.h +++ b/config.h @@ -117,7 +117,7 @@ static const Key keys[] = { { MODKEY, XK_i, spawn, {.v = intip} }, { MODKEY, XK_BackSpace, view, {0} }, { MODKEY, XK_a, view, {.ui = ~0} }, // Select all tags. Cancel it with `MODKEY + [tag key]`. - { MODKEY|Mod1Mask, XK_p, tag, {.ui = ~0} }, // Pin current window to all tags. Cancel it with `MODKEY + Shift + [tag key]`. + { MODKEY|ControlMask|ShiftMask, XK_p, tag, {.ui = ~0} }, // Pin current window to all tags. Cancel it with `MODKEY + Shift + [tag key]`. { MODKEY, XK_Left, focusmon, {.i = -1} }, { MODKEY, XK_Right, focusmon, {.i = +1} },