Configure border and titlebar color per app by using window rules

Signed-off-by: dmitry-erin <dmitry.erin@unikie.com>
This commit is contained in:
dmitry-erin 2024-01-05 11:33:24 +00:00
parent 7e60c57b81
commit 2cf0a85c45
No known key found for this signature in database
GPG key ID: 19C69293F1A60095
10 changed files with 207 additions and 102 deletions

View file

@ -128,4 +128,13 @@ void theme_init(struct theme *theme, const char *theme_name);
*/
void theme_finish(struct theme *theme);
void theme_parse_hexstr(const char *hex, float *rgba);
/**
* get_theme_for_view - get theme with check for custom color
* @view: view data
* @return: theme struct with color customization
*/
struct theme get_theme_for_view(struct view *view);
#endif /* LABWC_THEME_H */