aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar llyyr <llyyr@yukari.in>2024-02-27 02:06:27 +0530
committerLibravatar Simon Ser <contact@emersion.fr>2024-02-29 00:51:43 +0100
commit0b84d82b9aad05010479140774ac5ee1fea8ea97 (patch)
tree1265eda82806b43ec1b294110af82bbc62476461 /sway/ipc-json.c
parentipc: add `floating` property to GET_TREE (diff)
downloadsway-0b84d82b9aad05010479140774ac5ee1fea8ea97.tar.gz
sway-0b84d82b9aad05010479140774ac5ee1fea8ea97.tar.zst
sway-0b84d82b9aad05010479140774ac5ee1fea8ea97.zip
ipc: add `scratchpad_state` property to GET_TREE
See previous commit. This restores ipc parity with i3.
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 84e164e4..dfbb7a6e 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -289,6 +289,7 @@ static json_object *ipc_json_create_node(int id, const char* type, char *name,
289 json_object_object_add(object, "fullscreen_mode", json_object_new_int(0)); 289 json_object_object_add(object, "fullscreen_mode", json_object_new_int(0));
290 json_object_object_add(object, "sticky", json_object_new_boolean(false)); 290 json_object_object_add(object, "sticky", json_object_new_boolean(false));
291 json_object_object_add(object, "floating", NULL); 291 json_object_object_add(object, "floating", NULL);
292 json_object_object_add(object, "scratchpad_state", NULL);
292 293
293 return object; 294 return object;
294} 295}
@@ -702,6 +703,10 @@ static void ipc_json_describe_container(struct sway_container *c, json_object *o
702 json_object_object_add(object, "fullscreen_mode", 703 json_object_object_add(object, "fullscreen_mode",
703 json_object_new_int(c->pending.fullscreen_mode)); 704 json_object_new_int(c->pending.fullscreen_mode));
704 705
706 // sway doesn't track if window was resized in scratchpad, so we can't use "changed"
707 json_object_object_add(object, "scratchpad_state",
708 json_object_new_string(!c->scratchpad ? "none" : "fresh"));
709
705 struct sway_node *parent = node_get_parent(&c->node); 710 struct sway_node *parent = node_get_parent(&c->node);
706 struct wlr_box parent_box = {0, 0, 0, 0}; 711 struct wlr_box parent_box = {0, 0, 0, 0};
707 712