3 releases
0.1.2 | Mar 28, 2023 |
---|---|
0.1.1 | Mar 28, 2023 |
0.1.0 | Mar 28, 2023 |
#1121 in Text processing
Used in shrtcut
5KB
83 lines
glip
not much to say here, this is a small library to let you set and get text from the global clipboard. basically, it's frustrating for the clipboard to disappear as soon as your program finishes running, so this is a wrapper on the cli commands for global clipboards in linx, mac, and windows.
usage
use glcp::GlobalClip;
use anyhow::Result;
fn main() -> Result<() {
let value = "set it here";
GlobalClip::set(value);?
let from_clipboard = GlobalClip::get()?;
assert_eq!(value, from_clipboard)
}
Dependencies
~130KB