diff --git a/base-sysroot.tar.gz b/base-sysroot.tar.gz index 826e7a70..9df0ea55 100644 Binary files a/base-sysroot.tar.gz and b/base-sysroot.tar.gz differ diff --git a/userspace/programs/Shell/main.cpp b/userspace/programs/Shell/main.cpp index 056363c1..1f324ef6 100644 --- a/userspace/programs/Shell/main.cpp +++ b/userspace/programs/Shell/main.cpp @@ -720,21 +720,6 @@ static void install_builtin_commands() return ret; } )); - - MUST(s_builtin_commands.emplace("start-gui"_sv, - [](const SingleCommand&, FILE*, int, int) -> int - { - const pid_t pid = fork(); - if (pid == -1) - return 1; - if (pid == 0) - execl("/bin/WindowServer", "WindowServer", NULL); - if (fork() == 0) - execl("/bin/Terminal", "Terminal", NULL); - waitpid(pid, nullptr, 0); - return 0; - } - )); } static pid_t execute_command_no_wait(const SingleCommand& command, int fd_in, int fd_out, pid_t pgrp, bool background)