Add support for get_marks in i3-msg

next
Helgi Kristvin Sigurbjarnarson 2011-08-07 17:03:10 +00:00 committed by Michael Stapelberg
parent 35d7ef0ddd
commit 96ed68de16
1 changed files with 3 additions and 1 deletions

View File

@ -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') {