summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/config.def.h b/config.def.h
index 2f9932f..4c6d87c 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,25 +1,23 @@
/* See LICENSE file for copyright and license details. */
-#include <X11/XF86keysym.h>
-
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
-static const unsigned int gappx = 12; /* gaps between windows */
+static const unsigned int gappx = 12; /* gaps between windows */
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 = 22; /* user bar height; set to 0 if you want to use dwm's... */
+static const int user_bh = 22; /* 2 is the default spacing around the bar's font */
static const char *fonts[] = { "JetBrainsMono Nerd Font:style=Regular:size=10" };
-static const char dmenufont[] = "JetBrainsMono Nerd Font:style=Regular:size=10";
-static const char col_gray1[] = "#1e1e2e";
-static const char col_gray2[] = "#6c7086";
-static const char col_gray3[] = "#cdd6f4";
-static const char col_gray4[] = "#cdd6f4";
-static const char col_cyan[] = "#1e1e2e";
+static const char dmenufont[] = fonts[0];
+static const char col_gray1[] = "#282828";
+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 *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_gray3 },
+ [SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
/* tagging */