summarylogtreecommitdiffstats
path: root/p3x-onenote.sh
blob: 17866735a1779a803b492790e75dbe4900693a02 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
_ELECTRON=/usr/bin/electron24
_ASAR="/opt/p3x-onenote/p3x-onenote.asar"
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
    exec ${_ELECTRON} ${_ASAR} "$@"
else
    exec ${_ELECTRON} ${_ASAR} --no-sandbox "$@"
fi