Change key shortcut for Pin current window to all tags

This commit is contained in:
Dita Aji Pratama 2025-09-02 11:30:24 +07:00
parent 30753cab41
commit 27fe1f5c15

View File

@ -117,7 +117,7 @@ static const Key keys[] = {
{ MODKEY, XK_i, spawn, {.v = intip} }, { MODKEY, XK_i, spawn, {.v = intip} },
{ MODKEY, XK_BackSpace, view, {0} }, { MODKEY, XK_BackSpace, view, {0} },
{ MODKEY, XK_a, view, {.ui = ~0} }, // Select all tags. Cancel it with `MODKEY + [tag key]`. { 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_Left, focusmon, {.i = -1} },
{ MODKEY, XK_Right, focusmon, {.i = +1} }, { MODKEY, XK_Right, focusmon, {.i = +1} },