Initial commit

This commit is contained in:
Daniel Tsvetkov 2017-10-09 11:04:34 +03:00
commit 462c624b4a
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
image.jpg

5
apod.sh Executable file
View File

@ -0,0 +1,5 @@
#!/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"