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