Created
March 3, 2015 05:07
-
-
Save singpolyma/54bfaa17352fb8cad8b8 to your computer and use it in GitHub Desktop.
Set wallpaper to random recent unsplash image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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/&/\&/g')" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment