diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/config.def.h b/config.def.h index c4fcd29..400dc39 100644 --- a/config.def.h +++ b/config.def.h @@ -19,7 +19,7 @@ static const char *colors[][3] = { }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +static const char *tags[] = { "\uf30c", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; static const Rule rules[] = { /* xprop(1): @@ -84,21 +84,21 @@ static const Key keys[] = { { MODKEY, XK_o, setlayout, {.v = &layouts[4]} }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, - { MODKEY, XK_0, view, {.ui = ~0 } }, + { MODKEY, XK_0, view, {.ui = ~1 } }, { 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 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - TAGKEYS( XK_1, 0) - TAGKEYS( XK_2, 1) - TAGKEYS( XK_3, 2) - TAGKEYS( XK_4, 3) - TAGKEYS( XK_5, 4) - TAGKEYS( XK_6, 5) - TAGKEYS( XK_7, 6) - TAGKEYS( XK_8, 7) - TAGKEYS( XK_9, 8) + TAGKEYS( XK_1, 1) + TAGKEYS( XK_2, 2) + TAGKEYS( XK_3, 3) + TAGKEYS( XK_4, 4) + TAGKEYS( XK_5, 5) + TAGKEYS( XK_6, 6) + TAGKEYS( XK_7, 7) + TAGKEYS( XK_8, 8) + TAGKEYS( XK_9, 9) { MODKEY|ShiftMask, XK_q, quit, {0} }, }; |