Skip to content

Instantly share code, notes, and snippets.

@drhayes
Last active January 31, 2022 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drhayes/440b1d3c526c33310b93b5b90634f136 to your computer and use it in GitHub Desktop.
Save drhayes/440b1d3c526c33310b93b5b90634f136 to your computer and use it in GitHub Desktop.
Automatically download the latest Simple Desktop to a backgrounds-stage directory.
#! /usr/bin/env bash
pushd ~/Dropbox/Pictures/backgrounds-stage
http --print b https://feeds.feedburner.com/simpledesktops | tq 'item description' --text | tq 'img' --attr src --squash | head -1 | wget --no-clobber --input-file=-
@drhayes
Copy link
Author

drhayes commented Jan 31, 2022

Uses tq, from here: https://github.com/plainas/tq

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment