aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-16 15:35:43 +0200
committerMarvin Borner2020-08-16 15:35:43 +0200
commit36e36fae364dec02999f58edbe997780d901b674 (patch)
tree8b06909e475ef84201ca2ef9375880249b1d5e68 /apps/init.c
parentc4a0bc2571162ad83fc51eb823f1c535336041bf (diff)
Added WM and exec parameters
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/apps/init.c b/apps/init.c
index 89d446b..de87798 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -11,14 +11,8 @@
void main(struct vbe *vbe)
{
print("Init loaded.\n");
- printf("VBE: %dx%d\n", vbe->width, vbe->height);
+ int a = exec("/wm", vbe);
- const u32 color[3] = { 0, 0, 0 };
- vesa_fill(vbe, color);
- gui_init("/font/spleen-16x32.psfu");
- gui_term_write(vbe, "hallo");
-
- /* exec("/a"); */
- /* exec("/b"); */
- exit();
+ if (a)
+ exit();
}