You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
9 months ago | |
---|---|---|
.vscode | 1 year ago | |
examples | 10 months ago | |
java | 9 months ago | |
src | 1 year ago | |
.editorconfig | 5 years ago | |
.gitignore | 1 year ago | |
CHANGELOG.md | 1 year ago | |
CONTRIBUTING.md | 1 year ago | |
Cargo.toml | 1 year ago | |
LICENSE | 5 years ago | |
README.md | 1 year ago |
README.md
Discord RPC Client
This is a fork of https://gitlab.com/valeth/discord-rpc-client.rs
Discord RPC client for Rust
Installation
Add this to your Cargo.toml
:
[dependencies]
discord-rpc-client = "^0.2"
Example
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