diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-11-19 17:04:28 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-11-19 17:04:28 -0500 |
commit | db4fb1c85c132e001fb1ae18f03f7585def1ae19 (patch) | |
tree | 91da84c9476e6ec34c65f3f8923961fd893fa721 /sway/main.c | |
parent | 733993a651c71f7e2198d505960d6bbd31e0e107 (diff) |
Add outputs to the tree
Diffstat (limited to 'sway/main.c')
-rw-r--r-- | sway/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/main.c b/sway/main.c index 5710a099..42262b05 100644 --- a/sway/main.c +++ b/sway/main.c @@ -16,10 +16,11 @@ #include <sys/prctl.h> #endif #include "sway/server.h" +#include "sway/layout.h" #include "ipc-client.h" +#include "log.h" #include "readline.h" #include "stringop.h" -#include "log.h" #include "util.h" static bool terminate_request = false; @@ -436,7 +437,7 @@ int main(int argc, char **argv) { return 1; } - //init_layout(); + init_layout(); //ipc_init(); //if (validate) { |