Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 37 lines (29 sloc) 963 Bytes
#!/usr/bin/env bash
_haz() {
command -v "$1" > /dev/null 2>&1
}
_haz gm && convert="gm convert"
_haz convert && convert=convert
test -z "$convert" && exit 1
! _haz wget && exit 1
! _haz curl && exit 1
! _haz grep && exit 1
! _haz xrandr && exit 1
! _haz awk && exit 1
DATE="${1:-today}"
page="https://apod.nasa.gov/apod/"
subpage="ap$(date '+%y%m%d' --date="$DATE").html"
url="${page}${subpage}"
base_dir="$HOME/Pictures/nasa/"
wallpapers="$HOME/.wallpaper/"
img_name="$(date '+%Y%m%d' --date="$DATE")_nasa_pod.jpg"
monitor_size=$(xrandr -q | awk -F',' 'NR==1 {split($2, a, " "); print a[2]"x"a[4]}')
img=$(curl -s "$url" | awk '/jpg/ {split($0, a, "\""); print a[2]; exit}')
mkdir -p "$base_dir"
mkdir -p "$wallpapers"
if [[ "$img" == http* ]]; then
wget -O "${base_dir}${img_name}" "${img}" --quiet
else
wget -O "${base_dir}${img_name}" "${page}${img}" --quiet
fi
$convert "${base_dir}${img_name}" -resize $monitor_size "${wallpapers}${img_name}"