very basic IPC implementation

simply executes the received data as command
This commit is contained in:
minus 2015-08-16 20:24:18 +02:00
parent 579fe70ed9
commit 8981b48cd2
3 changed files with 79 additions and 0 deletions

View file

@ -9,6 +9,7 @@
#include "config.h"
#include "log.h"
#include "handlers.h"
#include "ipc.h"
static void sigchld_handle(int signal);
@ -99,6 +100,8 @@ int main(int argc, char **argv) {
free(config_path);
}
init_ipc();
wlc_run();
if (devnull) {
fclose(devnull);