Hello,
So I tried setting up Cron on my new laptop (EndeavourOS with kernel 6.14.5) and none of my Cron jobs are running :/
here's my crontab (output of running crontab -e):
SHELL=/bin/bash
[email protected]
PATH=/bin:/sbin/:/usr/bin:/usr/sbin:/usr/local/bin/:/usr/local/sbin:$HOME/bin
# Warning Alarms for Salah -- Plays a rooster alarm SFX when there's ~20 minutes left until Jama'at at local masjid.
# For now, it must be manually updated, unfortunately :(
# Fajr
55 03 * * * ffplay -v 0 -nodisp -autoexit /home/loaf/SFX/rooster.mp3 2>&1 >> $HOME/.adhan
# Dhuhr
55 12 * * * ffplay -v 0 -nodisp -autoexit /home/loaf/SFX/rooster.mp3 2>&1 >> $HOME/.adhan
# Asr
10 17 * * * ffplay -v 0 -nodisp -autoexit /home/loaf/SFX/rooster.mp3 2>&1 >> $HOME/.adhan
# Maghrib
20 10 * * * ffplay -v 0 -nodisp -autoexit /home/loaf/SFX/rooster.mp3 2>&1 >> $HOME/.adhan
# Isha
22 10 * * * ffplay -v 0 -nodisp -autoexit /home/loaf/SFX/rooster.mp3 2>&1 >> $HOME/.adhan
@weekly rsync-backup 2>&1 >> $HOME/.rsync-backup
0 22 * * 5 notify-send -t 10000 -i /home/loaf/ricing/icons/update.png "Update Time" "Oi... update yo system naow..."
*/10 * * * * /usr/local/bin/mailsync
And yes, I've already made sure to run sudo systemctl enable cronie.service and sudo systemctl start cronie.service beforehand...
perhaps I need to restart my system, but I doubt that is the case here... (I tried it and it still wouldn't run my debug job that echoes "Bruh" every minute)