#macos #clipboard #ffi

bin+lib pasteboard

CLI and Rust bindings for interacting with the macOS pasteboard

4 releases

0.1.3 May 14, 2021
0.1.2 Dec 25, 2020
0.1.1 Aug 7, 2019
0.1.0 Aug 7, 2019

#67 in #clipboard

Download history 22/week @ 2023-11-27 21/week @ 2023-12-04 6/week @ 2023-12-11 3/week @ 2023-12-18 6/week @ 2023-12-25 8/week @ 2024-01-01 7/week @ 2024-01-08 4/week @ 2024-01-15 5/week @ 2024-01-29 2/week @ 2024-02-05 10/week @ 2024-02-12 6/week @ 2024-02-19 121/week @ 2024-02-26 56/week @ 2024-03-04 22/week @ 2024-03-11

207 downloads per month
Used in silicon

MIT license

8KB
153 lines

pasteboard

This crate provides both a CLI and Rust bindings for interacting with the macOS pasteboard.

CLI

At the command-line, pasteboard introduces a pb command which can be used like:

# Copy/paste string
pb copy /path/to/foo.txt
pb paste /path/to/bar.txt

# Copy image/sound
pb copy /path/to/foo.png -t image
pb copy /path/to/foo.mp3 -t sound

Rust bindings

From Rust, pasteboard exposes a Pasteboard enum with copy and paste methods which can be used like:

use pasteboard::Pasteboard;

fn main() {
    unsafe {
        // Copy/paste string
        Pasteboard::String.copy("/path/to/foo.txt");
        Pasteboard::String.paste("/path/to/bar.txt");

        // Copy image/sound
        Pasteboard::Image.copy("/path/to/foo.png");
        Pasteboard::Sound.copy("/path/to/foo.png");
    }
}

Notes

The pb command is able to copy files as strings, images, and sounds. However, it can only paste as strings currently, but more coverage is planned in future releases.

Dependencies

~2.8–4MB
~72K SLoC