Skip to content

Instantly share code, notes, and snippets.

@tdewin
Created November 3, 2023 18:38
Show Gist options
  • Select an option

  • Save tdewin/6bb67bc75611cc967bcb6a1a2a787573 to your computer and use it in GitHub Desktop.

Select an option

Save tdewin/6bb67bc75611cc967bcb6a1a2a787573 to your computer and use it in GitHub Desktop.
Create screenshot with offset in macOS. At the same time make a screen log.md
function p {
PNG=$(printf "code-%d.png" $(($(date +%s))));
screencapture -R-1600,180,1280,720 $PNG;
OUT=$(printf '\n## Screenshot \n![](./screenshots/%s)\n' $PNG);
printf "%s" $OUT
printf "%s\n\n" $OUT | pbcopy
printf "%s\n\n" $OUT >> screenlog.md
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment