EZPPLauncher/preload/preload.js

28 lines
793 B
JavaScript
Raw Normal View History

2022-10-16 13:54:29 +00:00
const { ipcRenderer } = require('electron');
const { Titlebar, Color } = require('custom-electron-titlebar');
let titlebar;
window.addEventListener('DOMContentLoaded', () => {
titlebar = new Titlebar({
backgroundColor: Color.fromHex("#303030"),
itemBackgroundColor: Color.fromHex("#121212"),
icon: "https://ez-pp.farm/static/logos/circle.png",
menu: null,
maximizable: false
});
titlebar.updateTitle("EZPPLauncher");
const $ = require('jquery');
$("#folder-btn").on('click', async () => {
2022-10-16 14:47:43 +00:00
const success = await ipcRenderer.invoke('set-osu-dir');
if (success == undefined)
return;
2022-10-16 16:42:04 +00:00
if (success) {
} else {
//TODO: Alert User, invalid osu folder selected
}
2022-10-16 13:54:29 +00:00
});
})