This commit is contained in:
2025-08-16 21:50:47 +08:00
parent e8f28f72d9
commit 4fc054522b
7 changed files with 127 additions and 0 deletions

21
sh/open-image-from-clipboard.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Dependency: `brew install pngpaste coreutils`
# pngpaste required to grab image from clipboard
# coreutils required to create temp file with suffix
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Open Image
# @raycast.mode compact
# Optional parameters:
# @raycast.icon 📋
# @raycast.packageName Clipboard
# Documentation:
# @raycast.description Open Image from Clipboard in Preview for OCR or other purposes.
# @raycast.author xxchan
# @raycast.authorURL https://github.com/xxchan
tempfile=$(gmktemp --suffix=.png) && pngpaste $tempfile && open $tempfile