all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jean Louis <bugs@gnu.support>
To: Charalampos Mitrodimas <charmitro@gmail.com>
Cc: emacs-devel@gnu.org
Subject: Re: ORG Agenda on startup
Date: Fri, 7 Apr 2023 08:30:03 +0300	[thread overview]
Message-ID: <ZC+qW6VFjNTt7b1s@protected.localdomain> (raw)
In-Reply-To: <CAAJZy9-qqncyWbEkGscrJKuaUnd9jBezZ6ejZBjAPnszHv0jng@mail.gmail.com>

* 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/



  parent reply	other threads:[~2023-04-07  5:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-30  9:24 ORG Agenda on startup Charalampos Mitrodimas
2023-03-30  9:43 ` Eli Zaretskii
2023-03-30  9:56   ` Charalampos Mitrodimas
2023-04-07  5:30 ` Jean Louis [this message]
2023-04-09 15:23   ` Charalampos Mitrodimas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZC+qW6VFjNTt7b1s@protected.localdomain \
    --to=bugs@gnu.support \
    --cc=charmitro@gmail.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.