This commit is contained in:
Armin 2026-07-07 02:53:39 +02:00
commit 43eb1ddd96
2 changed files with 29 additions and 0 deletions

11
main.js Normal file
View file

@ -0,0 +1,11 @@
const { app, BrowserWindow, Menu } = require('electron');
function createWindow() {
const win = new BrowserWindow({
width: 1200,
height: 800,
});
win.loadURL('https://bsd.pm/noiz/');
}
Menu.setApplicationMenu(null);
app.whenReady().then(createWindow);