config: add csd.button-color option

This option controls the foreground color of the
minimize/maximize/close buttons. I.e. the color used to draw the
minimize/maximize/close glyphs.

It defaults to default background color.
This commit is contained in:
Daniel Eklöf 2021-06-20 10:44:50 +02:00
parent 1a755d0da2
commit 7334b53d83
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
6 changed files with 43 additions and 10 deletions

View file

@ -214,10 +214,12 @@ struct config {
struct {
bool title_set:1;
bool buttons_set:1;
bool minimize_set:1;
bool maximize_set:1;
bool close_set:1;
uint32_t title;
uint32_t buttons;
uint32_t minimize;
uint32_t maximize;
uint32_t close;