我尝试在每天下午 16 点收到通知 + 声音。这是工作,但在那之后,我失去了声音。我必须重新启动计算机。
定时任务:
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"
这里有什么问题?