我编写了一个使用 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)>
并且没有错误,所以我不太确定还能去哪里看。