From 4e676ef73eeae16dd6c1f09bc2a9d98e8813aae2 Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 17 Jun 2020 05:27:39 +0900 Subject: [PATCH] i3-msg: add missing option (#4128) --- i3-msg/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/i3-msg/main.c b/i3-msg/main.c index 0b0ef4e39..c1c8bb81b 100644 --- a/i3-msg/main.c +++ b/i3-msg/main.c @@ -189,6 +189,8 @@ int main(int argc, char *argv[]) { message_type = I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG; } else if (strcasecmp(optarg, "get_binding_modes") == 0) { message_type = I3_IPC_MESSAGE_TYPE_GET_BINDING_MODES; + } else if (strcasecmp(optarg, "get_binding_state") == 0) { + message_type = I3_IPC_MESSAGE_TYPE_GET_BINDING_STATE; } else if (strcasecmp(optarg, "get_version") == 0) { message_type = I3_IPC_MESSAGE_TYPE_GET_VERSION; } else if (strcasecmp(optarg, "get_config") == 0) { @@ -199,7 +201,7 @@ int main(int argc, char *argv[]) { message_type = I3_IPC_MESSAGE_TYPE_SUBSCRIBE; } else { printf("Unknown message type\n"); - printf("Known types: run_command, get_workspaces, get_outputs, get_tree, get_marks, get_bar_config, get_binding_modes, get_version, get_config, send_tick, subscribe\n"); + printf("Known types: run_command, get_workspaces, get_outputs, get_tree, get_marks, get_bar_config, get_binding_modes, get_binding_state, get_version, get_config, send_tick, subscribe\n"); exit(EXIT_FAILURE); } } else if (o == 'q') {