diff options
author | fpi | 2020-06-21 13:05:56 +0200 |
---|---|---|
committer | fpi | 2020-06-21 13:06:28 +0200 |
commit | ed55e86c5869304ed0b38aa1d9a98d7bfebaaedc (patch) | |
tree | e8473c07fbd05d6046a51ccbfefab88771bae3cb | |
parent | Reorder theme settings & default to modus-operandi (diff) |
Add org-time-budgets & a Day agenda
-rw-r--r-- | emacs-init.org | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 45eab89..8bdc0e1 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2236,7 +2236,10 @@ Switch projects and subprojects from NEXT back to TODO" ;; See emacs.christianbaeuerlein.com/my-org-config.html (org-agenda-block-separator 9472) (org-agenda-custom-commands - `(("n" "Agenda and all TODOs" + `(("d" "Day agenda" + ((agenda "" ((org-agenda-span 'day))) + (org-time-budgets-in-agenda-maybe))) + ("n" "Agenda and all TODOs" ((todo "INPROGRESS" ((org-agenda-overriding-header "Inprogress Tasks"))) (agenda) @@ -2311,6 +2314,15 @@ Use imagemagick and standalone class for latex preview. (use-package org-num :delight) #+end_src +*** Time budgets +Gives an overview of time spent on defined budgets this week. Great to track if you've worked enough hours. To use it add ~(org-time-budgets-in-agenda-maybe)~ after ~(agenda)~ in a custom agenda command. +#+begin_src emacs-lisp +(use-package org-time-budgets + :straight (:host github :repo "fpiper/org-time-budgets" + :branch "develop") + :custom + (org-time-budgets '((:title "Work" :match "+work-nowork" :budget "40:00" :block workweek)))) +#+end_src *** Column view #+begin_src emacs-lisp (setq org-columns-default-format |