How to edit scheduled tasks made by Kcron via command line?

So, I have set a schedule to do something every night as root. But I am wanting to change it to once a week instead.

I had set the task via kcron; the KDE Task Scheduler GUI.

But I would like to know if there is a way to edit the task via command line.

I tried using sudo crontab -e, but nothing is listed in the file to edit. So, is there another directory/file where kcron stores the tasks that are set to run?

I can see ones created for the regular user. But anything as root isn’t listed under the typical directory /var/spool/cron/crontabs/root

system-wide cron jobs are specified in /etc/crontab which can be edited directly with any text editor

1 Like

Man… How could I not find that? lol

Thanks!