diff options
author | fpi | 2020-07-13 16:28:54 +0200 |
---|---|---|
committer | fpi | 2020-07-13 16:29:20 +0200 |
commit | 160090f58e9e2b3a6d535f41008f8aca63a1bf95 (patch) | |
tree | 06215cdb82dab27bfd40886b94ec6dfe8909af23 | |
parent | Add function to open bibtex pdf or directory (diff) |
Update org-time-budgets definition to :blocks syntax
-rw-r--r-- | emacs-init.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs-init.org b/emacs-init.org index 5ce60a9..75dedac 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2843,9 +2843,9 @@ Gives an overview of time spent on defined budgets this week. Great to track if :straight (:host github :repo "fpiper/org-time-budgets" :branch "develop") :custom - (org-time-budgets '((:title "Work" :match "+work-nowork" :budget "40:00" :block workweek) - (:title "Research" :match "+work+research" :budget "24:00" :block total-only) - (:title "Teaching" :match "+work+teaching" :budget "8:00" :block total-only)))) + (org-time-budgets '((:title "Work" :match "+work-nowork" :budget "40:00" :blocks (workday week)) + (:title "Research" :match "+work+research" :budget "24:00" :blocks (nil week)) + (:title "Teaching" :match "+work+teaching" :budget "8:00" :blocks (nil week))))) #+end_src *** Column view #+begin_src emacs-lisp |