From 53d353e6b47e4c89ed7ad028ed756fec1d793743 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 26 Nov 2015 16:49:36 -0500 Subject: [PATCH] Add "variant": "sway" to IPC version response --- sway/ipc.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/sway/ipc.c b/sway/ipc.c index 7ff0df01..e004aff1 100644 --- a/sway/ipc.c +++ b/sway/ipc.c @@ -67,12 +67,8 @@ void ipc_init(void) { } // Set i3 IPC socket path so that i3-msg works out of the box - if (!getenv("I3SOCK")) { - setenv("I3SOCK", ipc_sockaddr->sun_path, 1); - } - if (!getenv("SWAYSOCK")) { - setenv("SWAYSOCK", ipc_sockaddr->sun_path, 1); - } + setenv("I3SOCK", ipc_sockaddr->sun_path, 1); + setenv("SWAYSOCK", ipc_sockaddr->sun_path, 1); ipc_client_list = create_list(); @@ -339,6 +335,7 @@ void ipc_client_handle_command(struct ipc_client *client) { strcat(full_version, "\")"); json_object *json = json_object_new_object(); json_object_object_add(json, "human_readable", json_object_new_string(full_version)); + json_object_object_add(json, "variant", json_object_new_string("sway")); // Todo once we actually release a version json_object_object_add(json, "major", json_object_new_int(0)); json_object_object_add(json, "minor", json_object_new_int(0));