- Add this script to your crontab (I run it hourly)
- Set your wallpaper preference to ~/images/wallpapers/apod.jpg (or edit APOD_FILE below)
- The next time you log in the new image will appear
#!/bin/bash
BASE_URL=http://apod.nasa.gov/apod/
PAGE_URL=${BASE_URL}/astropix.html
APOD_FILE=~/images/wallpapers/apod.jpg
wget -qO - ${PAGE_URL} | grep "IMG" | \
wget -qO ${APOD_FILE} \
${BASE_URL}`awk -F "\"" '{print $2}'`
No comments:
Post a Comment