summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2022-05-15 15:07:54 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2022-05-15 15:07:54 -0400
commit862284ed29bff73bacca47d999091748026fd73c (patch)
tree920568016c25f606237377ba908e93cbf76e79f7
parent056d614b734d8c2b347bf1bfcfcfb7d6cc6e24b1 (diff)
fix workstation aesthetics
-rw-r--r--config.def.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h
index 557854d..0540447 100644
--- a/config.def.h
+++ b/config.def.h
@@ -7,7 +7,7 @@ static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const int user_bh = 0; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */
-static const char *fonts[] = { "monospace:size=22" };
+static const char *fonts[] = { "monospace:size=14" };
static const char norm_fg[] = "#447a6c";
static const char norm_bg[] = "#1b1d1b";
static const char sel_fg[] = "#1b1d1b";
@@ -17,9 +17,9 @@ static const char sel_border[] = "#bada55";
static const unsigned int baralpha = 0xd0;
static const unsigned int borderalpha = OPAQUE;
static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ /* fg bg border */
+ [SchemeNorm] = { norm_fg, norm_bg, norm_fg },
+ [SchemeSel] = { sel_fg, sel_bg, sel_bg },
};
static const unsigned int alphas[][3] = {
/* fg bg border */