通過設定進度條使用遠端
const { remote } = require("electron"); // <- The Node.js require() function is
// added to JavaScript by electron
function setProgress(p) { // p = number from 0 to 1
const currentWindow = remote.getCurrentWindow();
currentWindow.setProgressBar(p);
}