Skip to content

Instantly share code, notes, and snippets.

@ahmdrz
Created October 22, 2017 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmdrz/fb90a78fb31161bcb70412f2f5b64643 to your computer and use it in GitHub Desktop.
Save ahmdrz/fb90a78fb31161bcb70412f2f5b64643 to your computer and use it in GitHub Desktop.
query="nature"
if [ $# -eq 1 ]; then
query=$1
fi
base_dir=$HOME/.local/unsplash/
mkdir -p $base_dir
unixtime=$(date +%s)
wget -q "https://source.unsplash.com/1600x900/?$query" -O $base_dir/$unixtime.jpg
gsettings set org.gnome.desktop.background picture-uri $base_dir/$unixtime.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment