aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-02 23:07:52 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-03 15:12:00 +1000
commitb667298a0a1efead7949715a31ec86fe3b8b1cda (patch)
treebc658e3019d741f1f245350003b156d05cc354a2 /include/sway/config.h
parentMerge pull request #1893 from swaywm/touch (diff)
downloadsway-b667298a0a1efead7949715a31ec86fe3b8b1cda.tar.gz
sway-b667298a0a1efead7949715a31ec86fe3b8b1cda.tar.zst
sway-b667298a0a1efead7949715a31ec86fe3b8b1cda.zip
Render titles
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 {
206struct border_colors { 206struct border_colors {
207 float border[4]; 207 float border[4];
208 float background[4]; 208 float background[4];
209 float text[4]; 209 uint32_t text; /**< uint32_t because that's the format that cairo uses */
210 float indicator[4]; 210 float indicator[4];
211 float child_border[4]; 211 float child_border[4];
212}; 212};
@@ -461,6 +461,8 @@ struct bar_config *default_bar_config(void);
461 461
462void free_bar_config(struct bar_config *bar); 462void free_bar_config(struct bar_config *bar);
463 463
464int get_font_text_height(char *font);
465
464/* Global config singleton. */ 466/* Global config singleton. */
465extern struct sway_config *config; 467extern struct sway_config *config;
466 468