Files
libmutton/clip/launchClipClearProcessGUI_GENERIC.go
T
2026-02-14 17:11:26 -05:00

11 lines
394 B
Go

//go:build !ios && !android && interactive
package clip
// LaunchClearProcess launches the timed clipboard clearing process.
// For interactive GUI/TUI implementations, the clipboard clearing process is launched as a goroutine.
// copySubject can be omitted to clear the clipboard immediately and unconditionally.
func LaunchClearProcess(copySubject []byte) {
go ClearProcess(copySubject)
}