2022-03-08 10:59:49 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-04-15 10:58:46 +02:00
|
|
|
# Torifying Element
|
2022-03-08 10:59:49 +01:00
|
|
|
|
|
|
|
set -x
|
|
|
|
# proxy authentication is not supported
|
|
|
|
# https://github.com/vector-im/element-web/issues/3320
|
2022-03-18 14:51:33 +01:00
|
|
|
#/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.
|
2022-04-15 13:36:14 +02:00
|
|
|
# Also workaround my electron curse
|
|
|
|
flatpak run im.riot.Riot --disable-gpu --proxy-server=socks5://127.0.0.1:9050 $@
|
2022-03-08 10:59:49 +01:00
|
|
|
set +x
|