csd: initial implementation of minimize/maximize/close buttons

This commit is contained in:
Daniel Eklöf 2020-03-02 20:29:28 +01:00
parent c845c90835
commit 9699c9b8bf
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
11 changed files with 268 additions and 21 deletions

View file

@ -41,12 +41,19 @@ struct config {
int title_height;
int border_width;
int button_width;
struct {
bool title_set;
bool border_set;
bool minimize_set;
bool maximize_set;
bool close_set;
uint32_t title;
uint32_t border;
uint32_t minimize;
uint32_t maximize;
uint32_t close;
} color;
} csd;