aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-09-13 12:10:45 +0200
committerMarvin Borner2020-09-13 12:10:45 +0200
commit0ff95a565280241a4b9cc03840d8756180860b25 (patch)
tree89280d9ed98b549e54c69a3ac74d03eca5aebc11 /apps/init.c
parente55f8e9039b5be5f3750639dad0ae5058adc8449 (diff)
Maaany wm features
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c
index ba6f93e..192224b 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -10,8 +10,8 @@ int main(int argc, char **argv)
printf("[%s loaded]\n", argv[0]);
int wm = exec("/wm", "wm", argv[1], NULL);
- /* int test = exec("/window", "test", NULL); */
+ int test = exec("/window", "test", NULL);
int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL);
- return wm + mandelbrot;
+ return wm + mandelbrot + test;
}