#!/bin/bash

destdir="$HOME/Desktop/ilfatto"
today=$(date +%Y%m%d)
fname="$destdir/ilfatto${today}.pdf"

if ! [ -f "$fname" ] ; then
    echo "Try downloading newspaper ..."
    (cd $destdir && $HOME/bin/ilfatto-download > /dev/null)
fi
if [ -f "$fname" ] ; then
    xdg-open $fname
else
    echo "Newspaper not found :-("
fi
