RSS Git Download  Clone
Raw Blame History
#!/usr/bin/env node
const utils = require('corifeus-utils');
const path = require('path');

const start = async() => {

    utils.fs.ensureFile(`${process.env.HOME}/.local/share/applications/p3x-onenote.desktop`, `[Desktop Entry]
Version=1.0
Type=Application
Name=P3X Onenote
Icon=${path.resolve(__dirname + '/../src/electron/images/icon.png')}
Exec=/usr/bin/p3x-onenote
Comment=https://www.patrikx3.tk
Categories=Office;
Terminal=false
`, true)

    utils.childProcess.exec(`${__dirname}/../node_modules/.bin/electron ${__dirname}/../src/electron/main.js`, true);
}

start();