mirror of
https://github.com/swaywm/sway.git
synced 2025-11-05 13:29:51 -05:00
swaybar: Implement binding_mode_indicator
This commit is contained in:
parent
f2d519d0ba
commit
aa2f754c64
4 changed files with 96 additions and 7 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue