blob: 94b1a92b1bd7cd62f79f9051bec545d0f14c3652 (
plain)
1
2
3
4
5
6
|
#!/bin/bash
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
exec electron10 /opt/google-assistant-unofficial-desktop-client/google-assistant-unofficial-desktop-client.asar "$@"
else
exec electron10 --no-sandbox /opt/google-assistant-unofficial-desktop-client/google-assistant-unofficial-desktop-client.asar "$@"
fi
|