diff options
| author | hiqqup <jubu6000@gmail.com> | 2023-11-29 01:25:49 +0100 |
|---|---|---|
| committer | hiqqup <jubu6000@gmail.com> | 2023-11-29 01:25:49 +0100 |
| commit | bbbba9f720102c61bda518941cdfdd0820912e67 (patch) | |
| tree | 5a8c70ff275f6f603012a25f91d100fcdca07028 /config.def.h | |
| parent | f5739f35d417cfb63fe8eece38c3b5ceb02f9117 (diff) | |
| download | dwlb-bbbba9f720102c61bda518941cdfdd0820912e67.tar.gz | |
Implement color options for middle part of bar
Update help
Update command flags, append options -middle-bg-color (for !bar->sel)
-middle-bg-color-selcted (for bar->sel)
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 920717e..017258e 100644 --- a/config.def.h +++ b/config.def.h @@ -32,3 +32,5 @@ 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, }; +static pixman_color_t middle_bg_color = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; +static pixman_color_t middle_bg_color_selected = { .red = 0x0000, .green = 0x5555, .blue = 0x7777, .alpha = 0xffff, }; |