summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.def.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 32cbdfd..3dd19b2 100644
--- a/config.def.h
+++ b/config.def.h
@@ -9,6 +9,10 @@ static const int warpcursor = 1; /* weather the cursor should mo
static const int bypass_surface_visibility = 0; /* 1 means idle inhibitors will disable idle tracking even if it's surface isn't visible */
static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
static const unsigned int borderpx = 2; /* border pixel of windows */
+static const unsigned int borderspx = 2; /* width of the border that start from outside the windows */
+static const unsigned int borderepx = 0; /* width of the border that start from inside the windows */
+static const unsigned int borderspx_offset = 0; /* offset of the border that start from outside the windows */
+static const unsigned int borderepx_negative_offset = 0; /* offset of the border that start from inside the windows */
static const unsigned int gappx = 10; /* horiz inner gap between windows */
static const unsigned int swipe_min_threshold = 0;
static const float bordercolor[] = COLOR(0x161617ff);
@@ -20,6 +24,11 @@ static const float monoclecolor[] = COLOR(0xe6b99dff);
static const float rootcolor[] = COLOR(0x161617ff);
static const float fullscreen_bg[] = COLOR(0x00000000);
+static const float *borderscolor = bordercolor; /* color of the border that start from outside the windows */
+static const float *borderecolor = bordercolor; /* color of the border that start from inside the windows */
+static const int border_color_type = BrdOriginal; /* borders to be colored (focuscolor, urgentcolor) */
+static const int borders_only_floating = 0;
+
/* tagging - TAGCOUNT must be no greater than 31 */
#define TAGCOUNT (9)