Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poljar/weechat-matrix-rs
Rust rewrite of the python weechat-matrix script.
https://github.com/poljar/weechat-matrix-rs
matrix-org rust weechat
Last synced: 7 days ago
JSON representation
Rust rewrite of the python weechat-matrix script.
- Host: GitHub
- URL: https://github.com/poljar/weechat-matrix-rs
- Owner: poljar
- License: other
- Created: 2019-11-04T19:01:21.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-14T14:53:18.000Z (4 months ago)
- Last Synced: 2025-01-18T12:51:39.421Z (15 days ago)
- Topics: matrix-org, rust, weechat
- Language: Rust
- Size: 836 KB
- Stars: 363
- Watchers: 23
- Forks: 27
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![build-test-release](https://github.com/poljar/weechat-matrix-rs/actions/workflows/release.yml/badge.svg?event=push)](https://github.com/poljar/weechat-matrix-rs/actions/workflows/release.yml)
[![#weechat-matrix](https://img.shields.io/badge/matrix-%23weechat--matrix:termina.org.uk-blue.svg?style=flat-square)](https://matrix.to/#/!twcBhHVdZlQWuuxBhN:termina.org.uk?via=termina.org.uk&via=matrix.org)
[![license](https://img.shields.io/badge/license-ISC-blue.svg?style=flat-square)](https://github.com/poljar/weechat-matrix-rs/blob/master/LICENSE)# What is weechat-matrix?
[Weechat](https://weechat.org/) is an extensible chat client.
[Matrix](https://matrix.org/blog/home) is an open network for secure,
decentralized communication.weechat-matrix-rs is a Rust plugin for Weechat that lets Weechat communicate
over the Matrix protocol. This is a Rust rewrite of the
[weechat-matrix](https://github.com/poljar/weechat-matrix) Python script.# Project status
This project is a work in progress and doesn't do much yet. It can connect
to a Matrix server and send messages.If you are interested in helping out take a look at the issue tracker.
# Build
After Rust is installed the plugin can be compiled with:
cargo build
On Linux this creates a `libmatrix.so` file in the `target/debug/` folder, this
file needs to be renamed to `matrix.so` and copied to your Weechat plugin
directory. A plugin directory can be created in your `$WEECHAT_HOME` folder, by
default `.weechat/plugins/`.Alternatively, `make install` will build and install the plugin in your
`$WEECHAT_HOME` as well.