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