Skip to content

Instantly share code, notes, and snippets.

@singpolyma
Created March 3, 2015 05:07
Show Gist options
  • Select an option

  • Save singpolyma/54bfaa17352fb8cad8b8 to your computer and use it in GitHub Desktop.

Select an option

Save singpolyma/54bfaa17352fb8cad8b8 to your computer and use it in GitHub Desktop.
Set wallpaper to random recent unsplash image
#!/bin/sh
IDX=$(( ( $(od -N1 -An -t dI /dev/urandom) % 10 ) + 1 ))
feh --bg-fill "$(curl -q https://unsplash.com/rss | grep -o '<url>[^<]*' | sed -ne "${IDX}p" | cut -d'>' -f2- | sed -e 's/&amp;/\&/g')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment