aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorBaltazár Radics <baltazar.radics@gmail.com>2023-02-06 10:52:51 +0100
committerSimon Ser <contact@emersion.fr>2023-02-06 11:02:52 +0100
commit7d0351b41195671263a92997caab620c763d9d65 (patch)
tree1be415734a878837624251a8317fc3d02550a832 /sway
parent4cda9ee3a3aa122f3f1a6f570d8befa78083c1b5 (diff)
ipc: add ability to subscribe to output event
Diffstat (limited to 'sway')
-rw-r--r--sway/ipc-server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 2941ee76..9692a77f 100644
--- 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) {