int main(int argc, char** argv) {					//main function. it all starts here.
    settings s;
    if (fixSettings(argc,argv,&s) == true){
        printf("4\n");
	createPPM(s);							//prints the array
    } else {
	printf("Incorrect Parameters\n");
     	printf("They should be: minX maxX minY maxY resX resY maxIts julC.x julC.y filepath\n");
    };
    return 0;
};
void Core::reloadSettings()
{
    // read config settings
    configSettingsValues();

    // read config profile
    configProfileValues();

    // check settings
    fixSettings();

    // themes
    Themes::instance()->refreshCurrent();
}