Biblioteca da Violetana!

TITLE

Bem-vindo a minha mente

Autores Favoritos <3

function createWindow() { const win = new BrowserWindow({ title: "My little calendar", width: 214, height: 228, resizable: false, maximizable: false, fullscreenable: false, frame: false, transparent: true, background: "#00000000", webPreferences: { contextIsolation: true } }); win.loadFile("index.html"); } app.whenReady().then(createWindow); app.on("window-all-closed", () => { if (process.platform !== "darwin") app.quit(); });