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