diff options
author | eug-vs <eug-vs@keemail.me> | 2021-07-21 16:10:08 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-07-21 16:10:08 +0300 |
commit | 5751bdf7602dd2f77fb7556ee88c20dc3fc679f4 (patch) | |
tree | 6a2eb33c95c79afbef79286aaf44e3ab798c42db | |
parent | 9b6b9932e3e160ebba78803e88faf3abc75e0f38 (diff) | |
download | dwm-5751bdf7602dd2f77fb7556ee88c20dc3fc679f4.tar.gz |
feat: improve rules
-rw-r--r-- | config.def.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index 9a29547..a19d21f 100644 --- a/config.def.h +++ b/config.def.h @@ -19,7 +19,7 @@ static const char col_yellow[] = "#d79921"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_foreground, col_background, col_background }, - [SchemeSel] = { col_foreground, col_yellow, col_yellow }, + [SchemeSel] = { col_foreground, col_yellow, col_yellow }, [SchemeStatus] = { col_foreground, col_background, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} @@ -31,7 +31,7 @@ static const char *colors[][3] = { }; /* tagging */ -static const char *tags[] = { "1: ", "2: ", "3: ", "4: ", "5: ", "6", "7", "8", "9" }; +static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; static const Rule rules[] = { /* xprop(1): @@ -41,9 +41,9 @@ static const Rule rules[] = { /* class instance title tags mask isfloating isterminal noswallow monitor */ // TODO: figure out firefox { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, { "St", NULL, NULL, 0, 0, 1, 0, -1 }, - { "brave-browser", NULL, NULL, 1, 0, 0, 1, -1 }, - { "TelegramDesktop", NULL, NULL, 1 << 1, 0, 0, 1, -1 }, - { "Slack", NULL, NULL, 1 << 1, 0, 0, 1, -1 }, + { "Brave-browser", NULL, NULL, 1, 0, 0, 1, 1 }, + { "TelegramDesktop", NULL, NULL, 1 << 1, 0, 0, 1, 1 }, + { "Slack", NULL, NULL, 1 << 1, 0, 0, 1, 1 }, }; /* layout(s) */ |