diff options
| author | kolunmi <kolunmi@tutanota.com> | 2023-02-14 19:25:32 -0700 |
|---|---|---|
| committer | kolunmi <kolunmi@tutanota.com> | 2023-02-14 19:25:32 -0700 |
| commit | 5d59643d3c04d04563f0d414619972b8a524e4f7 (patch) | |
| tree | a5db265efc2fa011a6feba3da96d45a76e23f48d /config.def.h | |
| parent | c1362d5ff1b1dcb6bd037e3358ca346655aa0bcc (diff) | |
| download | dwlb-5d59643d3c04d04563f0d414619972b8a524e4f7.tar.gz | |
add vertical_padding setting
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index e7349f9..47332c1 100644 --- a/config.def.h +++ b/config.def.h @@ -18,3 +18,6 @@ static pixman_color_t inactive_fg_color = { .red = 0xbbbb, .green = 0xbbbb, .blu static pixman_color_t inactive_bg_color = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; static pixman_color_t urgent_fg_color = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; static pixman_color_t urgent_bg_color = { .red = 0xeeee, .green = 0xeeee, .blue = 0xeeee, .alpha = 0xffff, }; + +// vertical pixel padding above and below text +static uint32_t vertical_padding = 1; |