ฉันสร้างสคริปต์ที่ควรแจ้งให้ฉันทราบเมื่อมีมังงะบทใหม่ที่ฉันกำลังอ่าน ฉันใช้คำสั่ง alert-send เพื่อทำสิ่งนี้ โปรแกรมทำงานเมื่อฉันพยายามเรียกใช้ในเทอร์มินัล การแจ้งเตือนกำลังแสดง อย่างไรก็ตามเมื่อฉันวางสิ่งนี้ลงใน crontab ของฉันการแจ้งเตือนจะไม่แสดง ฉันค่อนข้างมั่นใจว่าโปรแกรมกำลังทำงานอยู่ตั้งแต่ฉันสร้างมันเพื่อสร้างไฟล์ให้ฉัน ไฟล์ถูกสร้างขึ้น แต่การแจ้งเตือนไม่แสดง
นี่คือสคริปต์ของฉัน
#!/bin/bash
#One Piece Manga reminder
#I created a file named .newop that contains the latest chapter.
let new=$(cat ~/.newop)
wget --read-timeout=30 -t20 -O .opreminder.txt http://www.mangareader.net/103/one-piece.html
if (( $(cat .opreminder.txt | grep "One Piece $new" | wc -l) >=1 ))
then
(( new+=1 ))
echo $new
echo $new > ~/.newop
notify-send "A new chapter of One Piece was released."
else
notify-send "No new chapter for One Piece."
notify-send "The latest chapter is still $new."
fi
exit
และนี่คือสิ่งที่ฉันเขียนใน crontab ของฉัน
0,15,30,45 12-23 * * 3 /home/jchester/bin/opreminder.sh
export DISPLAY=:0
.
16.04
อันนี้ใช้ได้กับฉัน */1 * * * * eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ)";/usr/bin/notify-send -i appointment -c "im" "Keep Working"