#!/usr/bin/env bash # AutoBackground Unsplash # v1.o # Andros Fenollosa # tanrax # Autochange the wallpaper with an unsplash image echo '🖼' echo '---' echo 'Update | refresh=true' curl --silent "http://www.google.es" if [ $? -eq 0 ]; then curl --silent -L -o /Users/$USER/Pictures/background.jpg "https://source.unsplash.com/random" defaults write com.apple.desktop Background "{default = {ImageFilePath='/Users/$USER/Pictures/background.jpg'; };}"; killall Dock fi