You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
ns | 3 years ago | |
README.md | 3 years ago | |
main.go | 3 years ago | |
main_test.go | 4 years ago | |
nswrap.yaml | 4 years ago |
README.md
Clip
A tiny library to access the MacOS clipboard (a.k.a. NSPasteboard).
go get git.wow.st/63l06ri5/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