diff options
| author | 2026-03-08 11:56:45 -0400 | |
|---|---|---|
| committer | 2026-03-08 11:56:45 -0400 | |
| commit | 367c3b3a87ee10eaeb0f9d08787111df62b54515 (patch) | |
| tree | 24003cc2cf523aa9268c00b2d9a98c81572ccc4e /README.md | |
| parent | make private messages more obvious (diff) | |
added a readme
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..955a4aa --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +<p align="center"> + <img width="256" height=auto src="logo.png"> + <br/> + <img src="https://img.shields.io/github/contributors/lancebord/speakez" alt="contributors"> + <img src="https://img.shields.io/github/license/lancebord/speakez" alt="license"> + <img src="https://img.shields.io/github/forks/lancebord/speakez" alt="forks"> +</p> + +--- + +# SpeakEZ + +SpeakEZ is an open-source IRC client in your terminal written in Rust with the Ratatui crate for visuals. SpeakEZ is a minimal client that implements just enough protocol from scratch to support single channel chatting and private messages. No extra config files, tiling, tabs, splits, or menus. SpeakEZ is focused on being performant and simple. + +--- + +## Compiling/Installation + +``` +git clone https://github.com/lancebord/speakez.git +cd speakez +cargo install --path . +``` + +## Usage + +``` +speakez -s <server_addr>:<port> -n <nick> +``` + +You can optionally set username, realname, and password with `-u`, `-r`, and `-p` respectively. + +Once connected join a channel with `/join #<channel>` + +## Commands + +- `/join #<channel>` - joins the named channel and leaves prior channel +- `/part` - leaves the current channel +- `/nick <new_nick>` - changes nick to the new nick +- `/quit` - quits the client +- `/me` - return info about current user +- `/msg <nick> <message>` - sends a private message to specified nick + +## Thanks & Inspiration + +- [modern irc client protocol](https://modern.ircdocs.horse/) |
