Skip to content

Instantly share code, notes, and snippets.

@ztrayner
Created November 19, 2023 20:49
Show Gist options
  • Save ztrayner/6ae6532efcac10ff423c1ba54fcb721d to your computer and use it in GitHub Desktop.
Save ztrayner/6ae6532efcac10ff423c1ba54fcb721d to your computer and use it in GitHub Desktop.
Generate and copy qr code to clipboard on mac
alias qrgen='function _qrgen(){
local tmpfile="${HOME}/Downloads/qrcode.png"
qrencode -o "$tmpfile" "$*"
osascript -e "set the clipboard to (read (POSIX file \"${tmpfile}\") as JPEG picture)"
rm "$tmpfile"
}; _qrgen'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment