Created
May 9, 2020 05:03
-
-
Save kishorviswanathan/48d1fb5fe92ebd53525485e85232af2a to your computer and use it in GitHub Desktop.
This file contains 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/bash | |
tag=$1 | |
tmpfile=/tmp/`openssl rand -base64 10 | tr -cd '[:alpha:][:digit:]'`.jpg | |
echo "Downloading" | |
curl -Ls "https://source.unsplash.com/2880x1800/?$tag" -o "$tmpfile" | |
echo "Setting wallpaper" | |
osascript -e "tell application \"Finder\" to set desktop picture to POSIX file \"$tmpfile\"" | |
sleep 5 | |
rm -rf $tmpfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment