What screen capture tools can copy the image path to the clipboard after a snap?
Can anyone recommend a screen capture tool that can:
save a capture as a file, and...
copy the path to that file to the clipboard?
The first part is easy, but I can't find a utility that does the second part.
I dont need another app if there's a way to configure this using the built-in screen capture tool.
You could just assign a shortcut to a script like this:
#!/bin/bash
f=~/"Desktop/$(date '+%Y%m%d%H%M%S').png"
screencapture -i "$f"
echo -n "$f" | LC_CTYPE=UTF-8 pbcopy
See man strftime
for a reference of the date format.