Working sound
This commit is contained in:
parent
88366f4fe2
commit
8880af7215
|
@ -1,7 +1,8 @@
|
|||
#!/usr/bin/python3
|
||||
import notify2
|
||||
import gtk
|
||||
from time import sleep
|
||||
#from playsound import playsound
|
||||
from playsound import playsound
|
||||
|
||||
NAME = 'Eye Strain Reminder'
|
||||
MESSAGE = 'Friendly reminder to observe the 20-20-20 rule'
|
||||
|
@ -15,14 +16,16 @@ def uninit():
|
|||
notify2.uninit()
|
||||
|
||||
def send_notification():
|
||||
#playsound('files/default.mp3')
|
||||
notification = notify2.Notification(NAME, MESSAGE)
|
||||
notification = notify2.Notification(NAME, MESSAGE, "notification-device-eject")
|
||||
|
||||
#notification.set_icon_from_pixbuf(gtk.Label().render_icon(gtk.STOCK_DIALOG_INFO, gtk.ICON_SIZE_LARGE_TOOLBAR))
|
||||
notification.set_timeout(TIMEOUT * MILLISECOND)
|
||||
notification.set_urgency(notify2.URGENCY_LOW)
|
||||
notification.show()
|
||||
playsound('files/default.wav')
|
||||
sleep(TIMEOUT)
|
||||
notification.close()
|
||||
#playsound('files/default.mp3')
|
||||
playsound('files/default.wav')
|
||||
|
||||
if __name__ == '__main__':
|
||||
init()
|
||||
|
|
Loading…
Reference in New Issue