2024-10-16 22:46:58 +02:00
|
|
|
const { app, BrowserWindow } = require('electron');
|
|
|
|
|
|
|
|
app.whenReady().then(() => {
|
|
|
|
createWindow();
|
|
|
|
|
2024-10-17 22:48:50 +02:00
|
|
|
// This event works on macOS only.
|
|
|
|
// If the user clicks on app's icon on the dock and there are no open windows, create one.
|
2024-10-16 22:46:58 +02:00
|
|
|
app.on('activate', () => {
|
|
|
|
if (BrowserWindow.getAllWindows().length === 0) createWindow();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2024-10-17 22:48:50 +02:00
|
|
|
// If all windows are closed and we're not running macOS, quit the app.
|
2024-10-16 22:46:58 +02:00
|
|
|
app.on('window-all-closed', () => {
|
|
|
|
if (process.platform !== 'darwin') app.quit();
|
|
|
|
});
|
|
|
|
|
|
|
|
function createWindow() {
|
|
|
|
const win = new BrowserWindow({
|
|
|
|
width: 280,
|
|
|
|
height: 485,
|
2024-10-17 09:05:34 +02:00
|
|
|
resizable: false,
|
2024-10-16 22:46:58 +02:00
|
|
|
autoHideMenuBar: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
win.loadFile('static/index.html');
|
|
|
|
}
|