hyper/test/index.js
2024-11-03 16:49:27 +01:00

16 lines
322 B
JavaScript

const { app, BrowserWindow } = require('electron');
const electronDragClick = require('../index');
electronDragClick();
app.on('ready', () => {
const win = new BrowserWindow({
width: 800,
height: 600,
frame: false,
transparent: true,
vibrancy: 'sidebar',
});
win.loadFile('./index.html');
});