diff options
| author | Chris Sobczak <chris@sobczak.family> | 2026-06-30 15:23:21 -0700 |
|---|---|---|
| committer | Chris Sobczak <chris@sobczak.family> | 2026-06-30 15:23:21 -0700 |
| commit | 7d1d709c415aef67257a197f98047ef2b84a02e8 (patch) | |
| tree | d57b3834957b4ea78d2029587488fe506e4b34e6 /config.def.h | |
| parent | 11b6d553629151eb58f1247a2318da4b7c8eeb25 (diff) | |
Set TAGCOUNT
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 6 |
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; |
