summaryrefslogtreecommitdiffstats
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.h1
-rw-r--r--include/swaybar/config.h6
3 files changed, 8 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 d02b0d63..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;
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;