Skip to content

Instantly share code, notes, and snippets.

@haru067
Last active January 25, 2023 15:04
Show Gist options
  • Save haru067/fb622ba07681768e8c56b1bd0cecc98b to your computer and use it in GitHub Desktop.
Save haru067/fb622ba07681768e8c56b1bd0cecc98b to your computer and use it in GitHub Desktop.
#!/bin/bash
tmpfile=$(mktemp)
adb shell screencap -p > $tmpfile
mogrify -resize 50% $tmpfile
osascript -e "set the clipboard to (read (POSIX file \"$tmpfile\") as JPEG picture)"
rm $tmpfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment