aboutsummaryrefslogtreecommitdiff
path: root/sway/ipc-server.c
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-03 22:00:59 +0100
committerMikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-03 22:16:36 +0100
commitaa2f754c64605676c9f3586ebf18f667e787c06a (patch)
tree3cd19b37cfe852fa9e2b2f7104fc0c92c4ccdec1 /sway/ipc-server.c
parentf2d519d0bac03b9d69221d3c6c59feb39b9ccf4f (diff)
swaybar: Implement binding_mode_indicator
Diffstat (limited to 'sway/ipc-server.c')
-rw-r--r--sway/ipc-server.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 2bb25202..ed3977d5 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -293,6 +293,8 @@ void ipc_client_handle_command(struct ipc_client *client) {
client->subscribed_events |= IPC_EVENT_WORKSPACE;
} else if (strcmp(event_type, "barconfig_update") == 0) {
client->subscribed_events |= IPC_EVENT_BARCONFIG_UPDATE;
+ } else if (strcmp(event_type, "mode") == 0) {
+ client->subscribed_events |= IPC_EVENT_MODE;
} else {
ipc_send_reply(client, "{\"success\": false}", 18);
ipc_client_disconnect(client);
@@ -605,3 +607,13 @@ void ipc_event_barconfig_update(struct bar_config *bar) {
json_object_put(json); // free
}
+
+void ipc_event_mode(const char *mode) {
+ json_object *obj = json_object_new_object();
+ json_object_object_add(obj, "change", json_object_new_string(mode));
+
+ const char *json_string = json_object_to_json_string(obj);
+ ipc_send_event(json_string, IPC_EVENT_MODE);
+
+ json_object_put(obj); // free
+}