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