I would like the Org-mode agenda to automatically show what I have to do today when I open Emacs. The org-agenda command is interactive, so it doesn\'t seem to work well for
You can use after-init-hook to run a piece of code after initialization has finished. To run (org-agenda-list) after init, use:
after-init-hook
(org-agenda-list)
(add-hook 'after-init-hook 'org-agenda-list)