Skip to content

Instantly share code, notes, and snippets.

@hackergrrl
Created November 24, 2014 22:05
Show Gist options
  • Save hackergrrl/6d8d948edee392574ddd to your computer and use it in GitHub Desktop.
Save hackergrrl/6d8d948edee392574ddd to your computer and use it in GitHub Desktop.
Grab URL of today's Bing background image + set as desktop BG
#!/bin/bash
JSON_URL="http://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&nc=1397809837851&pid=hp"
URL=$(echo "http://www.bing.com"$(curl -s $JSON_URL | sed 's/.*"url":"\(.*\.jpg\)".*/\1/'))
FILENAME=$(mktemp --suffix=".jpg")
curl -sL $URL > $FILENAME
feh --bg-fill $FILENAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment