summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 8d8c776..d44b2a0 100644
--- a/config.def.h
+++ b/config.def.h
@@ -10,7 +10,8 @@ static const unsigned int borderpx = 0; /* border pixel of windows */
static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
static int gaps = 1; /* 1 means gaps between windows are added */
static const unsigned int gappx = 10; /* gap pixel between windows */
-static const float rootcolor[] = COLOR(0x222222ff);
+//static const float rootcolor[] = COLOR(0x222222ff);
+static const float rootcolor[] = COLOR(0x000000ff); // from bar patch?
static const float bordercolor[] = COLOR(0x444444ff);
static const float focuscolor[] = COLOR(0x005577ff);
static const float urgentcolor[] = COLOR(0xff0000ff);
@@ -22,7 +23,6 @@ static const float default_opacity_focus = 1.00f;
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 float rootcolor[] = COLOR(0x000000ff);
static uint32_t colors[][3] = {
/* fg bg border */
[SchemeNorm] = { 0xbbbbbbff, 0x222222ff, 0x444444ff },
@@ -32,6 +32,8 @@ static uint32_t colors[][3] = {
/* tagging */
static char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+#define TAGCOUNT (sizeof(tags) / sizeof(tags[0]))
+
/* logging */
static int log_level = WLR_ERROR;