1
submitted 5 months ago* (last edited 5 months ago) by to c/orgmode@lemmy.ml
 
 

I'm trying to create a group in org-super-agenda that displays recurring events that occur today. They are showing under "Other items" in org-super-agenda.

Here's the event

* Burger and Fry-day!
:PROPERTIES:
:LOCATION: Everywhere
:ID:       69cca5d7-f9ef-45eb-9d41-76ee125156c7
:END:
<2020-09-11 Fri +1w>

Here's my config

  (use-package org-super-agenda
    :straight t
    :after org-agenda
    :config
    (org-super-agenda-mode 1)
    (setq org-super-agenda-groups
           '((:name "All Day Events"
                    :and (:date today
                                :not (:habit)
                                :not (:time-grid)))
             (:name "Today's Schedule"
                    :time-grid t)
             (:name "Punchlist"
                    :and (:scheduled today
                                     :not (:habit)))
             (:name "Habits"
                    :habit t)
             (:name "Important"
                    :priority "1")
             )))

Would org-ql make this possible? I haven't been able to successfully select the recurring event occurring today using org-ql. I've seen several other people asking about doing this on Github, but no definitive answer.

EDIT: Apparently, if I could group by the text property 'day' instead of 'ts-date', which is what :date matches, it would be easy. Because 'day' matches (org-today), but 'ts-date' is the date of origin or the first occurrence of the recurring event.

2
 
 

cross-posted from: https://lemmy.ml/post/35300445

GGG (Guile Glyph Generator) v0.4.6

Now also packaged via Podman/Docker, and a new version is in a PR to Guix, containing many improvements, specially to CLI experience and flexibility, as well as a cleaner badge definition DSL

https://codeberg.org/jjba23/ggg

Through SVG generation from Lisp (Guile Scheme) we leverage a beautiful DSL (Domain-Specific Language) and apply some mathematical knowledge to build pixel perfect badges.

The SVG (Scalable Vector Graphics) can then be easily converted without quality loss to any desired format. Create your badges programatically with a polished aesthetic!

3
 
 

I keep some of my org-mode files under version control (more than one repository, and not all are version controlled). This is a gource visualization of the activity on org-mode files from a couple of areas that are highly active and tracked in git.