2022-03-08 10:59:49 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-05-09 21:46:50 +02:00
|
|
|
# Wayland flags: --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland
|
2022-04-18 11:56:06 +02:00
|
|
|
# Wayland crash: https://github.com/vector-im/element-web/issues/19964
|
|
|
|
# Crash workaround for Signal-desktop, but not Element? --disable-gpu
|
2022-03-08 10:59:49 +01:00
|
|
|
|
|
|
|
set -x
|
2022-03-18 14:51:33 +01:00
|
|
|
# Flatpak is preferred for Element not having official Fedora repositories
|
|
|
|
# and at the time of writing being unmaintained in upstream suggested repo.
|
2022-04-18 11:56:06 +02:00
|
|
|
flatpak run im.riot.Riot $@
|
2022-03-08 10:59:49 +01:00
|
|
|
set +x
|