@treynterrio When starting the plug-in, I check whether the GeneralSettings file exists. If not, I automatically set the scale factor to 75%. Works on the Mac. I have not yet tested whether it works on Windows. There is also the option of querying the user's display size.
const appData = FileSystem.getFolder(FileSystem.AppData);
const settingsFile = appData.getChildFile("GeneralSettings.xml");
if(settingsFile.isFile())
Console.print("General Settings exist");
else
Settings.setZoomLevel(0.75);