Go to file
Greg Pomerantz 4c310187b7 Updates for Big Sur. 2021-07-14 22:22:20 -04:00
ns Updates for Big Sur. 2021-07-14 22:22:20 -04:00
README.md fixup 2019-10-01 09:41:49 -04:00
go.mod Updates for Big Sur. 2021-07-14 22:22:20 -04:00
main.go Initial commit. 2019-10-01 09:33:35 -04:00
main_test.go Initial commit. 2019-10-01 09:33:35 -04:00
nswrap.yaml Updates for Big Sur. 2021-07-14 22:22:20 -04:00

README.md

Clip

A tiny library to access the MacOS clipboard (a.k.a. NSPasteboard).

go get git.wow.st/gmp/clip

API:

package clip

// Clear clears the general pasteboard
func Clear()

// Set puts a string on the pasteboard, returning true if successful
func Set(string) bool

// Get retrieves the string currently on the pasteboard.
func Get() string