aboutsummaryrefslogtreecommitdiffstats
path: root/swaymsg/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaymsg/main.c')
-rw-r--r--swaymsg/main.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index c4141ca5..3767daf3 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -250,12 +250,16 @@ static void pretty_print(int type, json_object *resp) {
250 if (type != IPC_COMMAND && type != IPC_GET_WORKSPACES && 250 if (type != IPC_COMMAND && type != IPC_GET_WORKSPACES &&
251 type != IPC_GET_INPUTS && type != IPC_GET_OUTPUTS && 251 type != IPC_GET_INPUTS && type != IPC_GET_OUTPUTS &&
252 type != IPC_GET_VERSION && type != IPC_GET_SEATS && 252 type != IPC_GET_VERSION && type != IPC_GET_SEATS &&
253 type != IPC_GET_CONFIG) { 253 type != IPC_GET_CONFIG && type != IPC_SEND_TICK) {
254 printf("%s\n", json_object_to_json_string_ext(resp, 254 printf("%s\n", json_object_to_json_string_ext(resp,
255 JSON_C_TO_STRING_PRETTY | JSON_C_TO_STRING_SPACED)); 255 JSON_C_TO_STRING_PRETTY | JSON_C_TO_STRING_SPACED));
256 return; 256 return;
257 } 257 }
258 258
259 if (type == IPC_SEND_TICK) {
260 return;
261 }
262
259 if (type == IPC_GET_VERSION) { 263 if (type == IPC_GET_VERSION) {
260 pretty_print_version(resp); 264 pretty_print_version(resp);
261 return; 265 return;
@@ -384,6 +388,8 @@ int main(int argc, char **argv) {
384 type = IPC_GET_BINDING_MODES; 388 type = IPC_GET_BINDING_MODES;
385 } else if (strcasecmp(cmdtype, "get_config") == 0) { 389 } else if (strcasecmp(cmdtype, "get_config") == 0) {
386 type = IPC_GET_CONFIG; 390 type = IPC_GET_CONFIG;
391 } else if (strcasecmp(cmdtype, "send_tick") == 0) {
392 type = IPC_SEND_TICK;
387 } else { 393 } else {
388 sway_abort("Unknown message type %s", cmdtype); 394 sway_abort("Unknown message type %s", cmdtype);
389 } 395 }