summaryrefslogtreecommitdiffstats
path: root/sway/ipc-server.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r--sway/ipc-server.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 8d9ab06a..241fe742 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -19,6 +19,7 @@
19#include "sway/commands.h" 19#include "sway/commands.h"
20#include "sway/ipc-json.h" 20#include "sway/ipc-json.h"
21#include "sway/ipc-server.h" 21#include "sway/ipc-server.h"
22#include "sway/output.h"
22#include "sway/server.h" 23#include "sway/server.h"
23#include "sway/input/input-manager.h" 24#include "sway/input/input-manager.h"
24#include "sway/input/seat.h" 25#include "sway/input/seat.h"
@@ -488,6 +489,13 @@ void ipc_client_handle_command(struct ipc_client *client) {
488 ipc_json_describe_container(container)); 489 ipc_json_describe_container(container));
489 } 490 }
490 } 491 }
492 struct sway_output *output;
493 wl_list_for_each(output, &root_container.sway_root->outputs, link) {
494 if (!output->swayc) {
495 json_object_array_add(outputs,
496 ipc_json_describe_disabled_output(output));
497 }
498 }
491 const char *json_string = json_object_to_json_string(outputs); 499 const char *json_string = json_object_to_json_string(outputs);
492 ipc_send_reply(client, json_string, (uint32_t) strlen(json_string)); 500 ipc_send_reply(client, json_string, (uint32_t) strlen(json_string));
493 json_object_put(outputs); // free 501 json_object_put(outputs); // free