@BKeyport this answer inspired me to test it, so I have a solution:
- create two different folders.
- configure each install as you like.
- edit each electron file in each folder “js/electron.js”
- change the default resolution and position based on your screens.
here is my config:
let electronOptionsDefaults = {
width: 1280,
height: 1024,
x: 1366,
y: 0,
}
NOTE: there are many better methods (electron-multi-monitor for example) but this is the easiest that I could find