You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 3, 2026. It is now read-only.
Allow users to pass MIME types (e.g. text/html, application/pdf, image/png) instead of UTI strings. Tacky would resolve them to the corresponding UTI before interacting with the pasteboard.
macOS provides UTType(mimeType:) for this conversion. In Rust, this could be done via the UTTypeCreatePreferredIdentifierForTag Core Services function or a built-in lookup table for common types.
Allow users to pass MIME types (e.g.
text/html,application/pdf,image/png) instead of UTI strings. Tacky would resolve them to the corresponding UTI before interacting with the pasteboard.macOS provides
UTType(mimeType:)for this conversion. In Rust, this could be done via theUTTypeCreatePreferredIdentifierForTagCore Services function or a built-in lookup table for common types.