#clipboard #x11 #ext #extension #context #fork #set

clipboard-ext

A clipboard library providing useful extensions for rust-clipboard

3 unstable releases

0.2.0 Feb 13, 2020
0.1.1 Feb 13, 2020
0.1.0 Feb 13, 2020

#806 in Unix APIs

Download history 2/week @ 2024-01-10 1/week @ 2024-02-07 12/week @ 2024-02-14 26/week @ 2024-02-21 21/week @ 2024-02-28 17/week @ 2024-03-06 23/week @ 2024-03-13 21/week @ 2024-03-20 17/week @ 2024-03-27

80 downloads per month
Used in 2 crates

MIT/Apache

32KB
340 lines

Build status on GitLab CI Newest release on crates.io Documentation Number of downloads on crates.io Project license

rust-clipboard-ext

A clipboard library providing useful extensions for the rust-clipboard library.

I had a growing annoyance with rust-clipboard, because the clipboard is cleared on the Linux/X11 platform when your application exists as per X11 design. The crate maintainer didn't want to implement workarounds (for valid reasons). This clipboard-ext crate provides additional clipboard contexts that solve this, along with a few other additions.

Here are some of these additions:

Example

Get and set clipboard contents. Keeps contents in X11 clipboard after exit by forking the process. Falls back to standard clipboard provider on non X11 platforms. See x11_fork module for details.

use clipboard_ext::prelude::*;
use clipboard_ext::x11_fork::ClipboardContext;

fn main() {
    let mut ctx = ClipboardContext::new().unwrap();
    println!("{:?}", ctx.get_contents());
    ctx.set_contents("some string".into()).unwrap();
}

Get and set clipboard contents. Keeps contents in X11 clipboard after exit by invoking xclip/xsel. Falls back to standard clipboard provider on non X11 platforms. See x11_bin module for details.

use clipboard_ext::prelude::*;
use clipboard_ext::x11_bin::ClipboardContext;

fn main() {
    let mut ctx = ClipboardContext::new().unwrap();
    println!("{:?}", ctx.get_contents());
    ctx.set_contents("some string".into()).unwrap();
}

Requirements

  • Rust 1.40 or above
  • Same requirements as rust-clipboard
  • Requirements noted in specific clipboard context modules

Special thanks

  • to aweinstock314 for building rust-clipboard
  • to everyone involved in all crate dependencies used

License

This project is dual-licensed under the MIT and Apache2 license.

Dependencies

~0–1MB
~15K SLoC