aboutsummaryrefslogtreecommitdiff
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index a0113e98..02ae3b63 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -206,7 +206,7 @@ struct bar_config {
struct border_colors {
float border[4];
float background[4];
- float text[4];
+ uint32_t text; /**< uint32_t because that's the format that cairo uses */
float indicator[4];
float child_border[4];
};
@@ -461,6 +461,8 @@ struct bar_config *default_bar_config(void);
void free_bar_config(struct bar_config *bar);
+int get_font_text_height(char *font);
+
/* Global config singleton. */
extern struct sway_config *config;