chore: Only support official Discord with discover-overlay

This commit is contained in:
Kyle Gospodnetich 2024-07-01 15:44:03 -07:00 committed by GitHub
parent 92dfeae828
commit 22c0ec2944
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@ BASE_IMAGE_NAME=$(jq -r '."base-image-name"' < $IMAGE_INFO)
# Run discover-overlay if discord is installed and we aren't using Wayland.
if [[ ${AUTO_LAUNCH_DISCOVER_OVERLAY} == 1 ]]; then
if grep -q "com.discordapp.Discord\|xyz.armcord.ArmCord\|de.shorsh.discord-screenaudio\|io.github.spacingbat3.webcord\|dev.vencord.Vesktop" <<< $(/usr/bin/flatpak list --app --columns=application); then
if grep -q "com.discordapp.Discord" <<< $(/usr/bin/flatpak list --app --columns=application); then
if [[ ${BASE_IMAGE_NAME} =~ "kinoite" || "$XDG_SESSION_TYPE" != "wayland" ]]; then
/usr/bin/discover-overlay "$@"
elif [[ ${BASE_IMAGE_NAME} =~ "silverblue" && "$XDG_SESSION_TYPE" == "wayland" && "${LAUNCH_DISCOVER_ON_GNOME_WAYLAND}" == 1 ]]; then