mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 21:14:22 +00:00
first commit
This commit is contained in:
23
app/main.js
Normal file
23
app/main.js
Normal file
@@ -0,0 +1,23 @@
|
||||
const { app, BrowserWindow } = require( 'electron' )
|
||||
require( './app.js' );
|
||||
|
||||
const createWindow = () => {
|
||||
const win = new BrowserWindow( {
|
||||
width: 800,
|
||||
height: 600,
|
||||
})
|
||||
|
||||
win.loadFile( 'index.html' );
|
||||
};
|
||||
|
||||
app.whenReady().then( () => {
|
||||
createWindow();
|
||||
|
||||
app.on( 'activate', () => {
|
||||
if ( BrowserWindow.getAllWindows().length === 0 ) { createWindow() };
|
||||
} );
|
||||
} );
|
||||
|
||||
app.on( 'window-all-closed', () => {
|
||||
if ( process.platform !== 'darwin' ) { app.quit() };
|
||||
} );
|
||||
Reference in New Issue
Block a user