Handle no location in the text output

This commit is contained in:
Cedric Girard 2018-07-11 15:23:00 +02:00
parent 2efc9be21f
commit a1d6655334
1 changed files with 5 additions and 1 deletions

View File

@ -26,6 +26,10 @@ curl -Lsf -o ${WALLPAPER_LOCATION} ${photo_url}
nitrogen --save --set-zoom ${WALLPAPER_LOCATION}
#Put wallpaper info into text file (eg for Conky)
echo "Taken in ${photo_location} by ${photo_username}" > ${INFO_LOCATION}
if [[ "${photo_location}" == null ]] ; then
echo "Photo by ${photo_username}" > ${INFO_LOCATION}
else
echo "Taken in ${photo_location} by ${photo_username}" > ${INFO_LOCATION}
fi
# vim:set ts=2 sw=2 et: