2022-06-03 17:40:44 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-09-28 19:35:16 +02:00
|
|
|
# DeltaChat flatpak with easier command (and outside of Mullvad VPN if configured as).
|
2022-07-29 18:28:37 +02:00
|
|
|
# Gandi.net mail servers don't like Mullvad IPs resulting inability to send
|
|
|
|
# anything.
|
|
|
|
|
2022-06-03 17:40:44 +02:00
|
|
|
# The usual Electron flags: --disable-gpu --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland
|
|
|
|
|
|
|
|
# https://github.com/deltachat/deltachat-desktop/issues/2800
|
|
|
|
# Wayland would be enabled by: --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland
|
|
|
|
|
|
|
|
set -x
|
2022-07-29 18:28:37 +02:00
|
|
|
# Having "flatpak run" will make mullvad-exclude lose effect!
|
2022-09-28 19:35:16 +02:00
|
|
|
#/usr/bin/mullvad-exclude
|
|
|
|
/var/lib/flatpak/exports/bin/chat.delta.desktop --disable-gpu $@
|
2022-06-03 17:40:44 +02:00
|
|
|
set +x
|