I have this in crontab:
emacs -batch -l ~/.emacs -eval '(org-batch-agenda "w")' > ~/org/aux/agenda-export.txt
This uses a custom program that I have already configured ( Cc aw
in orgmode) and export to a text file. Then I call this file via conky to display my agenda on top of my wallpaper.
Have you decided to solve it?
In the comments, you will want to do this via:
crontab -e
This opens your crontab file for editing. Add the execution timeline (minute day of the month month of the month to week) and the command you want to run (starting with emacs ...
), and you should be installed. See the crontab man page for more information if you are not familiar).
Basically, figure out how to successfully execute the org command from the command line, and then add it (with the prefix of the columns telling cron at startup) via crontab -e
.
source share