97b75c19cb
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/thunderbird#bbe0d15c7e2f5b6f7cfb370a9e638793ae62ac44
13 lines
199 B
Bash
13 lines
199 B
Bash
#!/bin/bash
|
|
#
|
|
# Run Thunderbird under Wayland
|
|
#
|
|
|
|
##
|
|
## Enable Wayland backend?
|
|
##
|
|
if [ "$XDG_CURRENT_DESKTOP" == "GNOME" ]; then
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
fi
|
|
exec __PREFIX__/bin/thunderbird "$@"
|