discord-rpc-client/README.md

52 lines
1.0 KiB
Markdown

# Discord RPC Client
This is a fork of [https://gitlab.com/valeth/discord-rpc-client.rs](https://gitlab.com/valeth/discord-rpc-client.rs)
Discord RPC client for Rust
## Installation
Add this to your `Cargo.toml`:
```toml
[dependencies]
discord-rpc-client = "^0.2"
```
## Example
```rust
extern crate discord_rpc_client;
use std::{env, thread, time};
use discord_rpc_client::Client;
fn main() {
// Get our main status message
let state_message = env::args().nth(1).expect("Requires at least one argument");
// Create the client
let mut drpc = Client::new(425407036495495169);
// Start up the client connection, so that we can actually send and receive stuff
drpc.start();
// Set the activity
drpc.set_activity(|act| act.state(state_message))
.expect("Failed to set activity");
// Wait 10 seconds before exiting
thread::sleep(time::Duration::from_secs(10));
}
```
> More examples can be found in the examples directory.
## Contributions
See [CONTRIBUTING.md](CONTRIBUTING.md)