mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-05 00:59:22 +01:00
Aminda Suomalainen
25d2061653
I understand that https://github.com/vector-im/element-web/releases/tag/v1.10.14-rc.1 brings support for --disable-gpu and the wayland crash seems fixed
13 lines
564 B
Bash
Executable File
13 lines
564 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Torifying Element with Wayland
|
|
|
|
set -x
|
|
# proxy authentication is not supported
|
|
# https://github.com/vector-im/element-web/issues/3320
|
|
#/usr/bin/element --proxy-server=socks5://127.0.0.1:9050 $@
|
|
# Flatpak is preferred for Element not having official Fedora repositories
|
|
# and at the time of writing being unmaintained in upstream suggested repo.
|
|
flatpak run im.riot.Riot --disable-gpu --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland --proxy-server=socks5://127.0.0.1:9050 $@
|
|
set +x
|