Created
June 27, 2022 07:12
-
-
Save artpi/08384bc6a9d23c8b92657e72ae2ea1f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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