aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 1ff9a104..58b7010e 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -227,6 +227,7 @@ struct bar_config {
227 bool strip_workspace_name; 227 bool strip_workspace_name;
228 bool binding_mode_indicator; 228 bool binding_mode_indicator;
229 bool verbose; 229 bool verbose;
230 struct side_gaps gaps;
230 pid_t pid; 231 pid_t pid;
231 struct { 232 struct {
232 char *background; 233 char *background;
@@ -425,6 +426,8 @@ struct sway_config {
425 list_t *config_chain; 426 list_t *config_chain;
426 const char *current_config_path; 427 const char *current_config_path;
427 const char *current_config; 428 const char *current_config;
429 int current_config_line_number;
430 char *current_config_line;
428 431
429 enum sway_container_border border; 432 enum sway_container_border border;
430 enum sway_container_border floating_border; 433 enum sway_container_border floating_border;
@@ -490,6 +493,11 @@ bool read_config(FILE *file, struct sway_config *config,
490 struct swaynag_instance *swaynag); 493 struct swaynag_instance *swaynag);
491 494
492/** 495/**
496 * Adds a warning entry to the swaynag instance used for errors.
497 */
498void config_add_swaynag_warning(char *fmt, ...);
499
500/**
493 * Free config struct 501 * Free config struct
494 */ 502 */
495void free_config(struct sway_config *config); 503void free_config(struct sway_config *config);