aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/commands.h1
-rw-r--r--include/sway/config.h8
-rw-r--r--include/swaybar/config.h6
3 files changed, 15 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index c3913c79..1f2376d0 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -188,6 +188,7 @@ sway_cmd bar_cmd_bindsym;
188sway_cmd bar_cmd_colors; 188sway_cmd bar_cmd_colors;
189sway_cmd bar_cmd_context_button; 189sway_cmd bar_cmd_context_button;
190sway_cmd bar_cmd_font; 190sway_cmd bar_cmd_font;
191sway_cmd bar_cmd_gaps;
191sway_cmd bar_cmd_mode; 192sway_cmd bar_cmd_mode;
192sway_cmd bar_cmd_modifier; 193sway_cmd bar_cmd_modifier;
193sway_cmd bar_cmd_output; 194sway_cmd bar_cmd_output;
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);
diff --git a/include/swaybar/config.h b/include/swaybar/config.h
index 700e6b60..fd7c6ec4 100644
--- a/include/swaybar/config.h
+++ b/include/swaybar/config.h
@@ -42,6 +42,12 @@ struct swaybar_config {
42 struct wl_list outputs; // config_output::link 42 struct wl_list outputs; // config_output::link
43 bool all_outputs; 43 bool all_outputs;
44 int height; 44 int height;
45 struct {
46 int top;
47 int right;
48 int bottom;
49 int left;
50 } gaps;
45 51
46 struct { 52 struct {
47 uint32_t background; 53 uint32_t background;