aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-05-02 23:47:56 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-05-02 23:47:56 +0200
commit8faec3867d8684fbde5cbe429c9adc8e0935af1b (patch)
tree319a924c82583b06095f02b20f306f026587f4fa /config.def.h
parent7c7c8c58c9a77abfc9356d4f269b876e7790b483 (diff)
downloaddwm-8faec3867d8684fbde5cbe429c9adc8e0935af1b.tar.gz
dwm-8faec3867d8684fbde5cbe429c9adc8e0935af1b.zip
Add FreeBSD logo on tag bar
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h22
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} },
};