whackedMallard
whackedMallard
> For macOS and Linux users at least, you can paste images directly into the chat via Ctrl+V (**not** Cmd+V). On Windows, you can drag images directly into the Claude...
That works but is not useful. I want to paste directly from clipboard without saving
workaround might be a slight derivation of the below (untested): ## Setup 1. Create the script `~/.local/bin/lastshot`: ```bash #!/bin/bash LATEST=$(ls -1t /mnt/c/Users/YOUR_USERNAME/Pictures/Screenshots/*.png | head -n1) echo "$LATEST" ``` 2. Make...