diff --git a/src/kiwmi/main.c b/src/kiwmi/main.c index 5a6b988..3ee5dba 100644 --- a/src/kiwmi/main.c +++ b/src/kiwmi/main.c @@ -1,3 +1,10 @@ +/* Copyright (c), Niclas Meyer + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at https://mozilla.org/MPL/2.0/. + */ + #include #include #include @@ -10,9 +17,10 @@ #include #include -#include "common.h" #include "ipc.h" +#include "common.h" + static void exec_config(const char *path); static void sig_handler(int sig); @@ -72,6 +80,7 @@ main(int argc, char *argv[]) signal(SIGPIPE, SIG_IGN); init_socket(); + init_xcb(); exec_config(config_path);