-
Notifications
You must be signed in to change notification settings - Fork 109
/
p3x-onenote.js
executable file
·43 lines (38 loc) · 1.35 KB
/
p3x-onenote.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env node
//const os = require('os');
//const process = require('process');
//const cores = os.cpus().length < 4 ? 4 : os.cpus().length;
//process.env.UV_THREADPOOL_SIZE = cores;
//console.debug(`P3X sets UV_THREADPOOL_SIZE to ${cores} thread pool`)
if (!require('fs').existsSync(`${__dirname}/../node_modules`)) {
require('child_process').execSync(`cd ${__dirname}/.. && npm install --only=prod`, {
stdio: 'inherit'
});
}
const utils = require('corifeus-utils');
const path = require('path');
const mz = require('mz');
const start = async() => {
try {
const desktopEntry = `${process.env.HOME}/.local/share/applications/p3x-onenote-cli.desktop`;
const exists = await utils.fs.ensureFile(desktopEntry, `[Desktop Entry]
Version=1.0
Type=Application
Name=P3X Onenote
Icon=${path.resolve(__dirname + '/../src/electron/images/128x128.png')}
Exec=${__filename}
Comment=https://www.corifeus.com/onenote
Categories=Office;
Terminal=false
`)
if (!exists) {
await mz.fs.chmod(desktopEntry , '0755');
await utils.childProcess.exec('gtk-update-icon-cache || true');
}
await utils.childProcess.exec(`${__dirname}/../node_modules/.bin/electron ${path.resolve(__dirname + '/../')} ${process.argv.join(' ')}`, true);
} catch (e) {
console.error(e);
throw e;
}
}
start();