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