mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-29 09:32:55 +00:00
18 lines
728 B
Bash
Executable File
18 lines
728 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
source /etc/default/discover-overlay
|
|
|
|
IMAGE_INFO="/usr/share/ublue-os/image-info.json"
|
|
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" <<< $(/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
|
|
env GDK_BACKEND=x11 /usr/bin/discover-overlay "$@"
|
|
fi
|
|
fi
|
|
fi
|