Kernel: Spawn /bin/Taskbar on startup.

I think it's good enough now to be there by default. :^)
This commit is contained in:
Andreas Kling 2019-04-04 20:19:07 +02:00
commit ec7817af37
Notes: sideshowbarker 2024-07-19 14:49:17 +09:00

View file

@ -99,6 +99,7 @@ VFS* vfs;
hang();
}
window_server_process->set_priority(Process::HighPriority);
Process::create_user_process("/bin/Taskbar", (uid_t)100, (gid_t)100, (pid_t)0, error);
//Process::create_user_process("/bin/sh", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, move(environment), tty0);
Process::create_user_process("/bin/Terminal", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
#ifdef SPAWN_GUITEST2