A simple wrapper around arboard
that works in a few more situations:
clip.exe
and powershell get-clipboard
)```rust // Attempt to get clipboard contents. Will return error in an SSH session let clipboardcontents: String = clipboardanywhere::get_clipboard()?;
// Set clipboard contents to "Hello, world!"; clipboardanywhere::setclipboard("Hello, world!")?; ```