0 tag
This commit is contained in:
@@ -24,7 +24,7 @@ static const char* colors[][3] = {
|
||||
|
||||
/* tagging */
|
||||
// Browser is tab 8, Editor is 9
|
||||
static const char* tags[] = { "1", "2", "3", "4", "5", "6", "7", "B", "E" };
|
||||
static const char* tags[] = { "1", "2", "3", "4", "5", "6", "7", "B", "E", "0" };
|
||||
|
||||
static const Rule rules[] = {
|
||||
/* xprop(1):
|
||||
@@ -106,8 +106,8 @@ static const Key keys[] = {
|
||||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, // todo: toggle
|
||||
{ MODKEY, XK_o, setlayout, {0} },
|
||||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
||||
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
||||
// { MODKEY, XK_0, view, {.ui = ~0 } },
|
||||
// { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
||||
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
|
||||
{ MODKEY, XK_period, focusmon, {.i = +1 } },
|
||||
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
||||
@@ -123,6 +123,7 @@ static const Key keys[] = {
|
||||
{ MODKEY|ControlMask, XK_b, toggleview, {.ui = 1 << 7} },
|
||||
{ MODKEY|ControlMask|ShiftMask, XK_b, toggletag, {.ui = 1 << 7} },
|
||||
TAGKEYS_NO_MOVE( XK_e, 8)
|
||||
TAGKEYS( XK_0, 9) // tag 0
|
||||
};
|
||||
|
||||
/* button definitions */
|
||||
|
||||
Reference in New Issue
Block a user