pynotify を使用してアラートを出すスクリプトを作成しました。実行すると問題なく動作しますが ( python script.py
)、cron から実行する00 * * * * myname python ~/scripts/script.py
と動作しません。理由はわかりません。スニペットは次のとおりです。
if os.path.isfile(os.path.expanduser('~/.thumbnails/normal')+'/'+thumbnail):
n = pynotify.Notification(video_file[0], 'finished download', os.path.expanduser('~/.thumbnails')+'/'+thumbnail)
else:
n = pynotify.Notification(video_file[0], 'finished download', '/usr/share/icons/gnome/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png')
print n
n.show()
出力を ~/log.file に送信する<pynotify.Notification object at 0x16d4e60 (NotifyNotification at 0x13804e0)>
と、エラーが発生しないため、他にどこを見ればよいかわかりません。