Index: Common/Base/Ogre/BaseManager.cpp
--- Common/Base/Ogre/BaseManager.cpp.orig
+++ Common/Base/Ogre/BaseManager.cpp
@@ -14,12 +14,16 @@ namespace base
 	bool BaseManager::createRender(int _width, int _height, bool _windowed)
 	{
 		Ogre::String pluginsPath;
+		char *homedir;
+		homedir = getenv("HOME");
+		std::string homePath;
+		homePath = homedir;
 
 #ifndef OGRE_STATIC_LIB
 		pluginsPath = "plugins.cfg";
 #endif
 
-		mRoot = new Ogre::Root(pluginsPath, "ogre.cfg", "Ogre.log");
+		mRoot = new Ogre::Root(pluginsPath, homePath + "/mygui-ogre.cfg", homePath + "/mygui-Ogre.log");
 		auto renderSystem = mRoot->getRenderSystemByName(mRoot->getAvailableRenderers()[0]->getName());
 		mRoot->setRenderSystem(renderSystem);
 
