commit 34b07a98124a1ddff5b8fec1a98660085a4ef2d5
parent 0003ac9d294df889fd8648aadc650dc2bdce7249
Author: hhvn <hayden@haydenvh.com>
Date: Sun, 22 Nov 2020 17:45:16 +0000
dwm.c config.h: update SchemeNormWin
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/config.h b/config.h
@@ -8,7 +8,7 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=8" };
static const char col_gray1[] = "#0a0a10";
-static const char col_gray2[] = "#141726";
+static const char col_gray2[] = "#24283c";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#30404e";
@@ -17,8 +17,8 @@ static const char col_red[] = "#892b2b";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray1 },
- [SchemeSel] = { col_gray4, col_cyan, col_red },
- [SchemeStat] = { col_gray4, col_stat, col_stat },
+ [SchemeSel] = { col_gray4, col_cyan, col_red },
+ [SchemeStat] = { col_gray4, col_stat, col_stat },
[SchemeNormWin] = { col_gray3, col_gray2, col_gray1 },
};
diff --git a/dwm.c b/dwm.c
@@ -843,7 +843,7 @@ drawbar(Monitor *m)
x += tabw;
}
} else {
- drw_setscheme(drw, scheme[SchemeNorm]);
+ drw_setscheme(drw, scheme[SchemeNormWin]);
drw_rect(drw, x, 0, w, bh, 1, 1);
}
}