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