From 96ed68de160f902e183b89a5075b4506b7716966 Mon Sep 17 00:00:00 2001 From: Helgi Kristvin Sigurbjarnarson Date: Sun, 7 Aug 2011 17:03:10 +0000 Subject: [PATCH] Add support for get_marks in i3-msg --- 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 630a345d..d8195e08 100644 --- a/i3-msg/main.c +++ b/i3-msg/main.c @@ -180,9 +180,11 @@ int main(int argc, char *argv[]) { message_type = I3_IPC_MESSAGE_TYPE_GET_OUTPUTS; else if (strcasecmp(optarg, "get_tree") == 0) message_type = I3_IPC_MESSAGE_TYPE_GET_TREE; + else if (strcasecmp(optarg, "get_marks") == 0) + message_type = I3_IPC_MESSAGE_TYPE_GET_MARKS; else { printf("Unknown message type\n"); - printf("Known types: command, get_workspaces, get_outputs, get_tree\n"); + printf("Known types: command, get_workspaces, get_outputs, get_tree, get_marks\n"); exit(EXIT_FAILURE); } } else if (o == 'q') { -- 2.39.5