diff options
author | wochap <gean.marroquin@gmail.com> | 2024-06-04 16:02:25 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2025-02-20 11:45:52 -0600 |
commit | 400767dae1316df25fd8b140a40c24cf942f2535 (patch) | |
tree | ad63bc2fedc62bf0d7c75e7f77783e39c87363c9 /config.def.h | |
parent | 667fe80afccb94135d255cda26ed8f1c140de474 (diff) | |
download | dwl-400767dae1316df25fd8b140a40c24cf942f2535.tar.gz dwl-400767dae1316df25fd8b140a40c24cf942f2535.tar.bz2 dwl-400767dae1316df25fd8b140a40c24cf942f2535.zip |
implement borders patch
tihs patch adds 2 extra borders relative to the client, they don't
change the size of the client
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 9 |
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) |