0
나는 cron 작업에서 KDE의 knotify에 알림을 보내려고합니다. 아래의 코드는 잘 작동하지만 cron 작업으로 실행할 때 알림이 표시되지 않습니다.파이썬 - 리눅스에서 cron 작업으로 KDE knotify 메시지를 보내시겠습니까?
#!/usr/bin/python2
import dbus
import gobject
album = "album"
artist = "artist"
title = "title"
knotify = dbus.SessionBus().get_object("org.kde.knotify", "/Notify")
knotify.event("warning", "kde", [], title, u"by %s from %s" % (artist, album), [], [], 0, 0, dbus_interface="org.kde.KNotify")
누구나 내가 이것을 cron 작업으로 어떻게 실행할 수 있는지 알고 있습니까?