[dwm] added patch zeroastag

This commit is contained in:
dogeystamp 2023-06-16 18:24:40 -04:00
parent 9363f327dd
commit 7d8f8e82e9
2 changed files with 4 additions and 3 deletions

View File

@ -11,6 +11,8 @@ warp
vanitygaps
zeroastag
## Installation
Clone the repo.

View File

@ -41,7 +41,7 @@ static const unsigned int alphas[][3] = {
};
/* tagging */
static const char *tags[] = { " ", " ", " ", " ", " ", " ", " ", " ", " " };
static const char *tags[] = { " ", " ", " ", " ", " ", " ", " ", " ", " ", " " };
static const Rule rules[] = {
/* xprop(1):
@ -160,8 +160,6 @@ static const Key keys[] = {
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
{ MODKEY, XK_comma, setmfact, {.f = -0.05} },
{ MODKEY, XK_period, setmfact, {.f = +0.05} },
{ MODKEY|ShiftMask, XK_h, tagmon, {.i = +1 } },
@ -175,6 +173,7 @@ static const Key keys[] = {
TAGKEYS( XK_7, 6)
TAGKEYS( XK_8, 7)
TAGKEYS( XK_9, 8)
TAGKEYS( XK_0, 9)
{ MODKEY|ShiftMask, XK_q, quit, {0} },
};