summarylogtreecommitdiffstats
path: root/bluemail.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bluemail.sh')
-rw-r--r--bluemail.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/bluemail.sh b/bluemail.sh
index d3550f8ec0a8..b3c0932c9efd 100644
--- a/bluemail.sh
+++ b/bluemail.sh
@@ -8,4 +8,7 @@ if [[ -f $XDG_CONFIG_HOME/bluemail-flags.conf ]]; then
fi
# Launch
-exec /opt/bluemail/bluemail $BLUEMAIL_USER_FLAGS "$@"
+# Currently, the application is broken under Wayland and requires --no-sandbox to launch.
+# --ozone-platform=x11 and --no-sandbox flags are enforced to workaround this.
+# To be removed after Bluemail updates their Electron (which is still at v13.3.0...)
+exec /opt/bluemail/bluemail $BLUEMAIL_USER_FLAGS --no-sandbox --ozone-platform=x11 "$@"