#!/usr/bin/bash
#
# Run Thunderbird under Wayland
#

##
## Enable Wayland backend?
##
if [ "$XDG_CURRENT_DESKTOP" == "GNOME" ]; then
  export MOZ_ENABLE_WAYLAND=1
fi
exec /usr/bin/thunderbird "$@"
