Skip to content

Instantly share code, notes, and snippets.

@scripting
Created March 17, 2017 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scripting/121df9ef0e1adb4ff507833d958f3309 to your computer and use it in GitHub Desktop.
Save scripting/121df9ef0e1adb4ff507833d958f3309 to your computer and use it in GitHub Desktop.
Simpler version of Electron code to create a new window with an icon.
app.on ("ready", function () {
mainWindow = new BrowserWindow ({
width: 1100,
height: 1000,
icon: __dirname + "/" + "pork.png"
});
mainWindow.loadURL('file://' + __dirname + '/index.html');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment