this post was submitted on 26 Oct 2023
3 points (100.0% liked)

Emacs

305 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

Code is:

(progn 
  (with-temp-buffer
(insert
 (with-current-buffer (url-retrieve-synchronously "https://raw.githubusercontent.com/alphapapa/org-ql/bd2dd12a417df5403954576756d9c24273d94379/tests/data.org")
   (goto-char url-http-end-of-headers)
   (buffer-substring (point) (point-max))))
;; remove sunrise stuff throwing error
(goto-char (point-min))
(while (re-search-forward "^%%(org-super-agenda--test-diary-sunrise)\\|^%%(org-super-agenda--test-diary-sunset)" nil t)
(replace-match "" nil nil))
(write-file "/tmp/tmp.org"))
  (let ((org-agenda-files '("/tmp/tmp.org"))
(org-agenda-finalize-hook nil))
(org-agenda-list nil "2017-07-05"))
  (delete-other-windows))

Thanks to /u/alphapapa for good data for this purpose.

I've attached what mine looks like, but basically just default modus dark theme.

Why? If you live in your org-agenda, you probably care about how it looks to some extent.

Maybe we can share cool parts that improve our living spaces :)

you are viewing a single comment's thread
view the rest of the comments
[–] paretoOptimalDev@alien.top 2 points 11 months ago (1 children)