use env var SWAYSOCK if available

or fall back to /tmp/sway-ipc.sock
This commit is contained in:
minus 2015-08-19 01:40:49 +02:00
parent 773e85c681
commit bfbadadf70
1 changed files with 5 additions and 2 deletions

View File

@ -40,10 +40,13 @@ void init_ipc() {
struct sockaddr_un ipc_sockaddr = {
.sun_family = AF_UNIX,
// TODO: use a proper socket path
.sun_path = "/tmp/sway.sock"
.sun_path = "/tmp/sway-ipc.sock"
};
if (getenv("SWAYSOCK") != NULL) {
strncpy(ipc_sockaddr.sun_path, getenv("SWAYSOCK"), sizeof(ipc_sockaddr.sun_path));
}
unlink(ipc_sockaddr.sun_path);
if (bind(ipc_socket, (struct sockaddr *)&ipc_sockaddr, sizeof(ipc_sockaddr)) == -1) {
sway_abort("Unable to bind IPC socket");