mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-30 21:32:48 +00:00
9 lines
247 B
Plaintext
9 lines
247 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Run discover-overlay if discord is installed and we aren't using Wayland.
|
||
|
if grep -q "com.discordapp.Discord" <<< $(flatpak list); then
|
||
|
if [[ "$XDG_SESSION_TYPE" != "wayland" ]]; then
|
||
|
/usr/bin/discover-overlay
|
||
|
fi
|
||
|
fi
|