2023-09-15 10:11:36 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-09-17 01:13:52 -07:00
|
|
|
source /etc/default/discover-overlay
|
|
|
|
|
2023-09-15 10:11:36 -07:00
|
|
|
# Run discover-overlay if discord is installed and we aren't using Wayland.
|
2023-09-17 01:13:52 -07:00
|
|
|
if [[ ${AUTO_LAUNCH_DISCOVER_OVERLAY} == 1 ]]; then
|
2023-09-24 23:18:49 -07:00
|
|
|
if grep -q "com.discordapp.Discord\|xyz.armcord.ArmCord\|de.shorsh.discord-screenaudio\|io.github.spacingbat3.webcord" <<< $(flatpak list); then
|
2023-09-17 01:13:52 -07:00
|
|
|
if [[ "$XDG_SESSION_TYPE" != "wayland" ]]; then
|
|
|
|
/usr/bin/discover-overlay
|
|
|
|
fi
|
2023-09-15 10:11:36 -07:00
|
|
|
fi
|
|
|
|
fi
|