Skip to content

Instantly share code, notes, and snippets.

@artpi
Created June 27, 2022 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artpi/08384bc6a9d23c8b92657e72ae2ea1f7 to your computer and use it in GitHub Desktop.
Save artpi/08384bc6a9d23c8b92657e72ae2ea1f7 to your computer and use it in GitHub Desktop.
;; The app will show those queries in today's journal page,
;; the "NOW" query asks the tasks which need to be finished "now",
;; the "NEXT" query asks the future tasks.
;; Arturs comment: "A8C" is my work. I tag my work tasks with "A8C"
:default-queries
{:journals
[
{:title "🛠 TODO"
:query (and (or (todo TODO) (todo DOING) ) ( not [[LATER]] ) ( not [[FollowUp]] ) ( not [[A8C]] ) )
:collapsed? true}
{:title "Ⓜ️ A8C"
:query (and (or (todo TODO) (todo DOING) ) ( not [[LATER]] ) ( not [[FollowUp]] ) [[A8C]] )
:collapsed? true}
]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment