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