mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-05 09:09:22 +01:00
11 lines
278 B
Plaintext
11 lines
278 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Torifying Element
|
||
|
|
||
|
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 run im.riot.Riot --proxy-server=socks5://127.0.0.1:9050 $@
|
||
|
set +x
|