aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'swaybar/config.h')
-rw-r--r--swaybar/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/swaybar/config.h b/swaybar/config.h
index ee06668e..508b9c42 100644
--- a/swaybar/config.h
+++ b/swaybar/config.h
@@ -16,7 +16,7 @@ struct box_colors {
16/** 16/**
17 * Swaybar config. 17 * Swaybar config.
18 */ 18 */
19struct swaybar_config { 19struct config {
20 char *status_command; 20 char *status_command;
21 uint32_t position; 21 uint32_t position;
22 char *font; 22 char *font;
@@ -59,11 +59,11 @@ char *parse_font(const char *font);
59/** 59/**
60 * Initialize default sway config. 60 * Initialize default sway config.
61 */ 61 */
62struct swaybar_config *init_config(); 62struct config *init_config();
63 63
64/** 64/**
65 * Free config struct. 65 * Free config struct.
66 */ 66 */
67void free_config(struct swaybar_config *config); 67void free_config(struct config *config);
68 68
69#endif /* _SWAYBAR_CONFIG_H */ 69#endif /* _SWAYBAR_CONFIG_H */