diff options
author | Ranieri Althoff <ranisalt@gmail.com> | 2019-04-15 21:46:50 -0300 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2019-04-16 00:16:20 -0400 |
commit | fd6903673b084ef16f18e228405cb50adf28550d (patch) | |
tree | 0ac0b33d4bb1f63ccea152781b0b4108ec699fc7 /sway/ipc-json.c | |
parent | b2cfcebef61087f819b55d2f815e62aa4a6f1a52 (diff) |
Send disabled output available modes on IPC get_outputs
- Also fix missing trailing newline on pretty print
Signed-off-by: Ranieri Althoff <1993083+ranisalt@users.noreply.github.com>
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r-- | sway/ipc-json.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 4ccf6dfd..4af8d34b 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -240,7 +240,21 @@ json_object *ipc_json_describe_disabled_output(struct sway_output *output) { json_object_new_string(wlr_output->model)); json_object_object_add(object, "serial", json_object_new_string(wlr_output->serial)); - json_object_object_add(object, "modes", json_object_new_array()); + + json_object *modes_array = json_object_new_array(); + struct wlr_output_mode *mode; + wl_list_for_each(mode, &wlr_output->modes, link) { + json_object *mode_object = json_object_new_object(); + json_object_object_add(mode_object, "width", + json_object_new_int(mode->width)); + json_object_object_add(mode_object, "height", + json_object_new_int(mode->height)); + json_object_object_add(mode_object, "refresh", + json_object_new_int(mode->refresh)); + json_object_array_add(modes_array, mode_object); + } + + json_object_object_add(object, "modes", modes_array); json_object_object_add(object, "current_workspace", NULL); |