commit 7d0351b41195671263a92997caab620c763d9d65
parent 4cda9ee3a3aa122f3f1a6f570d8befa78083c1b5
Author: Baltazár Radics <baltazar.radics@gmail.com>
Date: Mon, 6 Feb 2023 10:52:51 +0100
ipc: add ability to subscribe to output event
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
@@ -739,6 +739,8 @@ void ipc_client_handle_command(struct ipc_client *client, uint32_t payload_lengt
const char *event_type = json_object_get_string(json_object_array_get_idx(request, i));
if (strcmp(event_type, "workspace") == 0) {
client->subscribed_events |= event_mask(IPC_EVENT_WORKSPACE);
+ } else if (strcmp(event_type, "output") == 0) {
+ client->subscribed_events |= event_mask(IPC_EVENT_OUTPUT);
} else if (strcmp(event_type, "barconfig_update") == 0) {
client->subscribed_events |= event_mask(IPC_EVENT_BARCONFIG_UPDATE);
} else if (strcmp(event_type, "bar_state_update") == 0) {