From bbbba9f720102c61bda518941cdfdd0820912e67 Mon Sep 17 00:00:00 2001 From: hiqqup Date: Wed, 29 Nov 2023 01:25:49 +0100 Subject: 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) --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.def.h') 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, }; -- cgit v1.2.3