From e8643790b093a4b25651aff14b85c492ffcae3f2 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 23 Oct 2023 00:49:03 +0200 Subject: WindowServer: Launch a new terminal by pressing ALT+n --- userland/terminal/term.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'userland/terminal/term.c') diff --git a/userland/terminal/term.c b/userland/terminal/term.c index 8a2ae83..2bc4a02 100644 --- a/userland/terminal/term.c +++ b/userland/terminal/term.c @@ -147,12 +147,6 @@ void run() { int main(void) { open("/dev/serial", O_RDWR, 0); open("/dev/serial", O_RDWR, 0); - printf("running the terminal\n"); - int pid = fork(); - if (0 == pid) { - char *argv[] = {NULL}; - execv("/ws", argv); - } global_w = GUI_CreateWindow(20, 20, 250 * 4, 150 * 4); assert(global_w); -- cgit v1.2.3