cd home in graphical session, too

This commit is contained in:
Kevin Lange 2014-06-08 13:33:59 -07:00
parent 6492fb2d8e
commit 30e5829fc6

View File

@ -1,6 +1,10 @@
/* This file is part of ToaruOS and is released under the terms
/* vim: tabstop=4 shiftwidth=4 noexpandtab
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2013-2014 Kevin Lange
*
* Graphical Session Manager
*
*/
#include <stdlib.h>
#include <stdio.h>
@ -44,6 +48,7 @@ void set_homedir() {
char path[512];
sprintf(path,"/home/%s", user);
setenv("HOME",path,1);
chdir(path);
} else {
setenv("HOME","/",1);
}