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