1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 19:05:08 +00:00

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
parent 6280dee625
commit ec7817af37

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