summarylogtreecommitdiffstats
path: root/lvce.sh
blob: 039366683c6e2b49d1661d552f7d68b7fe9db85d (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
_ELECTRON=/usr/bin/electron27
APPDIR="/opt/lvce"
export PATH="${APPDIR}:${PATH}"
_ASAR="${APPDIR}/resources/app"
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
    exec ${_ELECTRON} ${_ASAR} "$@"
else
    exec ${_ELECTRON} ${_ASAR} --no-sandbox "$@"
fi