6 lines
313 B
Bash
6 lines
313 B
Bash
|
#!/bin/bash
|
||
|
NASA_APOD_BASE_URL="https://apod.nasa.gov/apod"
|
||
|
IMAGE_URL=`curl -s $NASA_APOD_BASE_URL/astropix.html | grep -oh 'href="image/.*"' | grep -oh 'image/.*jpg' | head -1`
|
||
|
curl -s "$NASA_APOD_BASE_URL/$IMAGE_URL" > image.jpg
|
||
|
gsettings set org.gnome.desktop.background picture-uri "file:///$(pwd)/image.jpg"
|