summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/config.h b/config.h
index 8e08d70..dd19981 100644
--- a/config.h
+++ b/config.h
@@ -10,8 +10,9 @@ static const unsigned int gappov = 4; /* vert outer gap between windows
static const int smartgaps = 1; /* 1 means no outer gap when there is only one window */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
-static const char *fonts[] = { "monospace:size=10" };
-static const char dmenufont[] = "monospace:size=10";
+static const int user_bh = 4; /* 2 is the default spacing around the bar's font */
+static const char *fonts[] = { "monospace:size=11" };
+static const char dmenufont[] = "monospace:size=11";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@@ -24,14 +25,14 @@ static const char *colors[][3] = {
};
/* full tag indicator variables */
-static const int fti_top = 1; /* 0 means bottom indicator */
-static const int fti_border = 1; /* 0 means no border */
-static const unsigned int fti_height = 4; /* indicator height (as px) */
+static const int fti_top = 0; /* 0 means bottom indicator */
+static const int fti_border = 0; /* 0 means no border */
+static const unsigned int fti_height = 2; /* indicator height (as px) */
static const unsigned int fti_ptop = 0; /* top padding */
static const unsigned int fti_pbot = 0; /* bottom padding */
static const unsigned int fti_plef = 0; /* left padding */
static const unsigned int fti_prig = 0; /* right padding */
-static const char fti_color_nor[] = "#222222"; /* indicator color (not selected tag) */
+static const char fti_color_nor[] = "#444444"; /* indicator color (not selected tag) */
static const char fti_color_sel[] = "#eeeeee"; /* indicator color (selected tag) */
static const char fti_color_nor_inv[] = "#bbbbbb"; /* inverse indicator color (not selected tag) */
static const char fti_color_sel_inv[] = "#005577"; /* inverse indicator color (selected tag) */