add taglayouts patch

This commit is contained in:
2023-11-10 18:54:02 +05:00
parent 31e3dd85c2
commit c354d720b6
5 changed files with 19 additions and 9 deletions

View File

@@ -34,7 +34,8 @@ static char *colors[][3] = {
};
/* tagging */
static const char *tags[] = { "", "", "", "", "", "", "", "", "", "0", "-", "=" };
static const char *tags[] = { "", "", "", "", "", "", "", "", "", "0", "-", "=" };
static const int taglayouts[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
static const Rule rules[] = {
/* xprop(1):
@@ -134,9 +135,6 @@ static const Key keys[] = {
{ SUPERKEY, XK_h, setmfact, {.f = -0.05} },
{ SUPERKEY, XK_l, setmfact, {.f = +0.05} },
{ SUPERKEY|ShiftMask, XK_Return, zoom, {0} },
{ SUPERKEY, XK_Tab, view, {.ui = 0 } }, // next tab
{ SUPERKEY|ShiftMask, XK_Tab, view, {.ui = -1 } }, // prev tab
{ SUPERKEY|ControlMask, XK_Tab, view, {.ui = -2 } }, // last tab
{ SUPERKEY, XK_q, killclient, {0} },
{ SUPERKEY, XK_t, setlayout, {.v = &layouts[1]} },
{ SUPERKEY, XK_f, setlayout, {.v = &layouts[2]} },