mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-04-17 11:43:41 +00:00
13 lines
350 B
Bash
Executable File
13 lines
350 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source /etc/default/discover-overlay
|
|
|
|
# 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" <<< $(flatpak list); then
|
|
if [[ "$XDG_SESSION_TYPE" != "wayland" ]]; then
|
|
/usr/bin/discover-overlay
|
|
fi
|
|
fi
|
|
fi
|