Added the drawtitle function to console
Added ability to pick a bg preset for the title bar Added counting program Added function to set the current consoles title name Removed some of the debug code
This commit is contained in:
5
exec.c
5
exec.c
@ -130,6 +130,11 @@ int exec(char *path, char **argv) {
|
||||
}
|
||||
safestrcpy(curproc->name, last, sizeof(curproc->name));
|
||||
|
||||
if (curproc->consoleptr != 0)
|
||||
{
|
||||
setconsoleproctitle(curproc->consoleptr, curproc->name);
|
||||
}
|
||||
|
||||
// Commit to the user image.
|
||||
oldpgdir = curproc->pgdir;
|
||||
curproc->pgdir = pgdir;
|
||||
|
Reference in New Issue
Block a user