From bfe0aa75a6d08ee98883418eb367b19581ea9e75 Mon Sep 17 00:00:00 2001 From: dianshi Date: Sun, 5 Apr 2020 14:01:19 +0100 Subject: Added alternativetag patch --- config.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config.h') diff --git a/config.h b/config.h index 1c0b587..5398aec 100644 --- a/config.h +++ b/config.h @@ -20,6 +20,9 @@ static const char *colors[][3] = { /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +#ifdef CONFIG_DWM_ALTERNATIVETAGS +static const char *tagsalt[] = { "W", "工", "", "✠", "☠", "✡", "☪︎", "☭", "ﴔ" }; +#endif static const Rule rules[] = { /* xprop(1): @@ -84,6 +87,9 @@ static Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, +#ifdef CONFIG_DWM_ALTERNATIVETAGS + { MODKEY, XK_n, togglealttag, {0} }, +#endif TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) -- cgit v1.2.3