commit 1583ea9678bc4477f01f39eacec388abfb277bde
parent 792777d19516989491d53b9daaee162022100d7c
Author: Mahdi Mirzade <[email protected]>
Date: Mon, 24 Oct 2022 19:43:25 +0330
config.h: remove gray, only use fg and bg.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config.h b/config.h
@@ -20,7 +20,7 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const int barheight = 3; /* Spacing around the bar's font */
static const int hidevacanttags = 0; /* 1 means hide empty tags / 0: show every tag */
-static const int showtitle = 1; /* 1 means show WM_NAME of the currently selected window */
+static const int showtitle = 0; /* 1 means show WM_NAME of the currently selected window */
static const int truecenteredtitle = 0; /* 1 means center the WM_NAME on the status bar */
static char fgcolor[] = "#D8DEE9";
static char bgcolor[] = "#2E3440";
@@ -73,7 +73,7 @@ ResourcePref resources[] = {
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { color7, color0, color0 },
- [SchemeSel] = { color7, color8, color8 },
+ [SchemeSel] = { color0, color7, color7 },
[SchemeLayout] = { color7, color0, color0 },
};