aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-27 16:46:24 +0300
committereug-vs <eug-vs@keemail.me>2021-03-27 16:46:24 +0300
commit90bf48b7a078c221c96d019b1ae8e33fabeb498b (patch)
treed310fe3f19f3e03a84ba7f85b416ab0051d39ae3
parentd0f2749cdd192b12df5989a498d3bfe2dc022e0b (diff)
downloaddwm-90bf48b7a078c221c96d019b1ae8e33fabeb498b.tar.gz
feat: make dmenu yellow
-rw-r--r--config.def.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index 8181b95..992fd74 100644
--- a/config.def.h
+++ b/config.def.h
@@ -14,12 +14,11 @@ static const char col_gray1[] = "#111111";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#005577";
static const char col_yellow[] = "#d79921";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_yellow },
+ [SchemeSel] = { col_gray4, col_yellow, col_yellow },
[SchemeStatus] = { col_gray3, col_gray1, "#000000" }, // Statusbar right {text,background,not used but cannot be empty}
@@ -68,7 +67,7 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
-static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_yellow, "-sf", col_gray1, NULL };
static const char *termcmd[] = { "alacritty", NULL };
static Key keys[] = {