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