emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ORG Agenda on startup


From: Jean Louis
Subject: Re: ORG Agenda on startup
Date: Fri, 7 Apr 2023 08:30:03 +0300
User-agent: Mutt/2.2.9+54 (af2080d) (2022-11-21)

* Charalampos Mitrodimas <charmitro@gmail.com> [2023-03-30 12:26]:
> Hi,
> 
> Is there a way to replace Emacs initial buffer with a buffer containing
> a list of your ORG TODOs?

For my private, non-Org agenda, I am showing agenda every number of
seconds when Emacs is idle. This way when I come back to computer, I
get reminded.

;;; Hyperscope Agenda
(hyperscope-agenda-display-with-idle-timer)

(defvar hyperscope-agenda-timer nil
  "Hyperscope Agenda timer.")

(defun hyperscope-agenda-display-with-idle-timer ()
  "Display Hyperscope Agenda with idle timer."
  (unless hyperscope-agenda-timer
    (setq hyperscope-agenda-timer
          (run-with-idle-timer 
           hyperscope-agenda-show-every-seconds t
           #'hyperscope-agenda))))

-- 
Jean

Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns

In support of Richard M. Stallman
https://stallmansupport.org/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]