diff options
author | Marvin Borner | 2021-02-22 23:23:08 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-22 23:23:08 +0100 |
commit | 53679300c7a20dc21f96b1e502585204b36eda35 (patch) | |
tree | fb50e5f881f90fd8915baf2af4a1e4ce679c126f /apps/init.c | |
parent | 4c527e07fff9ed0a1eb0f34f1abd943706a0dba1 (diff) |
Started new frontend lib
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c index 08f2d80..87f0d82 100644 --- a/apps/init.c +++ b/apps/init.c @@ -12,7 +12,7 @@ int main(int argc, char **argv) log("%s loaded\n", argv[0]); int wm = exec("/bin/wm", "wm", argv[1], NULL); - /* int exec = exec("/bin/exec", "test", NULL); */ + int test = exec("/bin/window", "test", NULL); - return wm; //+ exec; + return wm + test; } |