OOBE completed

This commit is contained in:
2024-04-10 02:35:27 -05:00
parent 184d101a13
commit 0aae30f60e
3 changed files with 77 additions and 45 deletions

View File

@@ -52,14 +52,21 @@ public class Main {
"along with this program. If not, see https://www.gnu.org/licenses/.\n\n\n\n");
//begin
// todo create main window
// check and load configs
File fConf = new File(System.getProperty("user.home") + "/.firestar/firestar.conf");
if (!fConf.isFile()) {
new Kermit().setup(fConf); // this is a fresh install, run the OOBE.
} else {
// todo load modlist
new MissPiggy();
}
}
public static void writeConf(){
}
public static void loadConf(){
// todo load modlist and send to MissPiggy
}
}