I try to get a notification + sound everyday at 16PM. It's work but after that, i lost sound. I have to restart my computer.
The cron:
00 16 * * * /bin/bash /home/user/mynotifications.sh
mynotifications.sh:
#!/bin/sh
/usr/bin/spd-say "Hey, it's 16 PM !" -l "fr" -t "male2"
/usr/bin/notify-send -i /usr/share/icons/Adwaita/256x256/status/trophy-gold.png "Notification title" "Notification message"
What's wrong here ?