aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-11-28 11:23:48 -0500
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-11-28 11:24:14 -0500
commit1bd8463481c5272094a084a76ab558a45e18bd15 (patch)
treedcfac10d1996db167aba5e79059c41d1fff3f14f /sway/ipc-json.c
parentMerge pull request #3212 from martinetd/move_floating (diff)
downloadsway-1bd8463481c5272094a084a76ab558a45e18bd15.tar.gz
sway-1bd8463481c5272094a084a76ab558a45e18bd15.tar.zst
sway-1bd8463481c5272094a084a76ab558a45e18bd15.zip
Implement bar gaps
Adds the bar subcommand `gaps <amount>|<horizontal> <vertical>|<top> <right> <bottom> <left>` to set gaps for swaybar. Due to restrictions on margins for a layer_surface, only the sides that are anchored to an edge of the screen can have gaps. Since there is support for per-side outer gaps for workspaces, those should be able to be used instead for the last side.
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 40fbd3e7..fc631373 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -638,6 +638,18 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) {
638 json_object_new_string(bar->status_command) : NULL); 638 json_object_new_string(bar->status_command) : NULL);
639 json_object_object_add(json, "font", 639 json_object_object_add(json, "font",
640 json_object_new_string((bar->font) ? bar->font : config->font)); 640 json_object_new_string((bar->font) ? bar->font : config->font));
641
642 json_object *gaps = json_object_new_object();
643 json_object_object_add(gaps, "top",
644 json_object_new_int(bar->gaps.top));
645 json_object_object_add(gaps, "right",
646 json_object_new_int(bar->gaps.right));
647 json_object_object_add(gaps, "bottom",
648 json_object_new_int(bar->gaps.bottom));
649 json_object_object_add(gaps, "left",
650 json_object_new_int(bar->gaps.left));
651 json_object_object_add(json, "gaps", gaps);
652
641 if (bar->separator_symbol) { 653 if (bar->separator_symbol) {
642 json_object_object_add(json, "separator_symbol", 654 json_object_object_add(json, "separator_symbol",
643 json_object_new_string(bar->separator_symbol)); 655 json_object_new_string(bar->separator_symbol));