Skip to content

Instantly share code, notes, and snippets.

@dlh3
Last active April 23, 2022 21:01
Show Gist options
  • Save dlh3/5ffac17d62834243fb5dbd405b86c323 to your computer and use it in GitHub Desktop.
Save dlh3/5ffac17d62834243fb5dbd405b86c323 to your computer and use it in GitHub Desktop.
Chromecast Slideshow Featured Photos
#!/bin/bash
curl 'https://clients3.google.com/cast/chromecast/home' \
--data-raw 'request=[0,5000]' \
| tail -n +2 \
| jq -r '.[0][] | "\(.[9])\\n![](\(.[0]))\\n"' \
| sort -u \
| sed $'s|\\\\n|\\\n|g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment