diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-19 17:37:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 17:37:58 -0400 |
commit | 6ec362622841a3efe336daf9e74edca16e4bf984 (patch) | |
tree | cc5389a07ff451e7ad3c0b9ab8479723623e21b0 /sway/ipc-json.c | |
parent | f0fb27aba6b6e4d14fe0ce6e6e7d3dfa3fdf91fa (diff) | |
parent | 81f3fda6fa9b0789c8b40582a4b85b2e9501c185 (diff) | |
download | sway-6ec362622841a3efe336daf9e74edca16e4bf984.tar.xz |
Merge pull request #2676 from ianyfan/ipc
ipc: add pid information for views in layout tree
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r-- | sway/ipc-json.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 52278be2..f054ac9f 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -221,6 +221,8 @@ static const char *describe_container_border(enum sway_container_border border) } static void ipc_json_describe_view(struct sway_container *c, json_object *object) { + json_object_object_add(object, "pid", json_object_new_int(c->view->pid)); + const char *app_id = view_get_app_id(c->view); json_object_object_add(object, "app_id", app_id ? json_object_new_string(app_id) : NULL); |