Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flathub/im.riot.riot
https://github.com/flathub/im.riot.riot
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/flathub/im.riot.riot
- Owner: flathub
- Created: 2017-11-12T20:42:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-17T14:25:41.000Z (10 days ago)
- Last Synced: 2024-12-18T08:08:30.024Z (9 days ago)
- Language: Shell
- Homepage: https://flathub.org/apps/details/im.riot.Riot
- Size: 355 KB
- Stars: 35
- Watchers: 8
- Forks: 45
- Open Issues: 62
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# im.riot.Riot
This is a community-maintained [Flatpak](https://flatpak.org/) distribution of [Element Desktop](https://github.com/element-hq/element-desktop/), [formerly](https://element.io/blog/the-world-is-changing/) called Riot.
## User-specified config.json
Element Desktop's [instructions](https://github.com/vector-im/element-desktop/#user-specified-configjson) to use user-specified configuration settings do not apply. Instead, `config.json` must be created at `~/.var/app/im.riot.Riot/config/$NAME/config.json`, where `$NAME` is typically `Element`. The contents of the file are otherwise the same.
## Networking proxy
Overriding enviroment variables such as `all_proxy`, `http_proxy`, `https_proxy` can toggle proxy for Element Desktop. For example:
```bash
# enable proxy
flatpak override --env=all_proxy=http://127.0.0.1:7890 im.riot.Riot# disable proxy overriding and use proxy settings from system (if current-shell env have related variables)
flatpak override --unset-env=all_proxy im.riot.Riot# disable all proxy settings (Flatpak shell will inherit env from host shell sometimes)
flatpak override --env=all_proxy="" --env=http_proxy="" --env=https_proxy="" im.riot.Riot
```