Skip to content

Instantly share code, notes, and snippets.

@helb
Created July 4, 2017 10:51
Show Gist options
  • Save helb/9eb3b103f1df7387ad04c7e64ab3bf57 to your computer and use it in GitHub Desktop.
Save helb/9eb3b103f1df7387ad04c7e64ab3bf57 to your computer and use it in GitHub Desktop.
artpip.com daily wallpaper
#!/bin/sh
set -e;
curl http://artpip.com/api/featured |
jq ".artworks[0].url" |
xargs -n1 curl > /tmp/wall.jpg &&
feh --bg-fill /tmp/wall.jpg;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment