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