From 5d41a732e15a25cf6ecac5c8035539153769a2b8 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Fri, 18 Mar 2022 15:51:33 +0200 Subject: [PATCH] bash/usr-local-bin/element: prefer flatpak --- bash/usr-local-bin/element | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bash/usr-local-bin/element b/bash/usr-local-bin/element index 66331cb..ac60097 100755 --- a/bash/usr-local-bin/element +++ b/bash/usr-local-bin/element @@ -5,6 +5,8 @@ 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 $@ +#/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 --proxy-server=socks5://127.0.0.1:9050 $@ set +x