blob: ec40440ca79484478f700f32c6cb550fe311c1d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
export DISPLAY=:0
export cfg=~/.config/puckfetcher
puckfetcher -c $cfg -d ~/Podcasts -a ~/tmp/podcasts update
export ret=$(puckfetcher -c $cfg -d ~/Podcasts -a ~/tmp/podcasts list)
echo "$(date +%Y.%m.%d..%H.%M) $(basename $0): $ret" \
>> /var/log/ben.cron.log
notify-send "Podcasts updated!" "$ret"
|