dwm

my build of dwm
git clone git://git.ckyln.com/~cem/dwm.git
Log | Files | Refs | README | LICENSE

commit f3c6ffa503b89205ed3101a581afdeea46cfd390
parent e3cee1cafa1dc85403db5bc381ceb2814fea9d1d
Author: Cem Keylan <cem@ckyln.com>
Date:   Wed,  1 Apr 2020 14:38:05 +0300

simplify window manager

Diffstat:
Mconfig.def.h | 12+-----------
1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -35,7 +35,7 @@ static const char *colors[][3] = { }; /* tagging */ -static const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX" }; +static const char *tags[] = { "I", "II", "III", "IV", "V" }; static const Rule rules[] = { /* xprop(1): @@ -44,16 +44,6 @@ static const Rule rules[] = { */ /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, 1, -1 }, - { "firefox", NULL, NULL, 1 << 8, 0, -1 }, - { "qutebrowser", NULL, NULL, 1 << 8, 0, -1 }, - { "Surf", NULL, NULL, 1 << 8, 0, -1 }, - { "tabbed", NULL, NULL, 1 << 8, 0, -1 }, - { NULL, NULL, "Mail", 1 << 7, 0, -1 }, - { NULL, NULL, "Music", 1 << 6, 0, -1 }, - { NULL, NULL, "IRC", 1 << 5, 0, -1 }, - { NULL, NULL, "Gomuks", 1 << 5, 0, -1 }, - { NULL, NULL, "News", 1 << 4, 0, -1 }, - }; /* layout(s) */