update colors

This commit is contained in:
ktyl 2022-07-03 21:09:13 +01:00
parent 7c11447690
commit 5896d34e77
2 changed files with 2 additions and 3 deletions

View File

@ -15,8 +15,8 @@ static const char col_cyan[] = "#005577";
static const char col_pink[] = "#F8C8DC"; static const char col_pink[] = "#F8C8DC";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_gray1, col_pink, col_pink }, [SchemeNorm] = { col_gray1, col_pink, col_gray2 },
[SchemeSel] = { col_gray3, col_gray1, col_gray2 }, [SchemeSel] = { col_gray3, col_gray1, col_pink },
}; };
/* tagging */ /* tagging */

1
dwm.c
View File

@ -743,7 +743,6 @@ drawbar(Monitor *m)
if ((w = m->ww - tw - x) > bh) { if ((w = m->ww - tw - x) > bh) {
if (m->sel) { if (m->sel) {
drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0); drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
if (m->sel->isfloating) if (m->sel->isfloating)
drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0); drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);