Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unable to get this working emacs 27 installed via melpa - am i missing a step? #8

Open
robinclark opened this issue Aug 15, 2021 · 1 comment

Comments

@robinclark
Copy link

Emacs 27.2
Installed via melpa
running M-x org-time-budgets-table doesn't do anything
adding following to my agenda:

(setq org-agenda-custom-commands '(("a" "Agenda" ((agenda "" ((org-agenda-sorting-strategy '(habit-down time-up priority-down category-keep user-defined-up)))) (org-time-budgets-in-agenda-maybe)))))

prints error
org-agenda-run-series: Invalid type in command series Mark set

Any ideas?

@robinclark
Copy link
Author

robinclark commented Aug 15, 2021

After manually installing the package I got the table in my agenda;

`
;;; init.el

(add-to-list 'load-path "~/org/lisp/")
(load "org-time-budgets")

;;;; org-time-budgets

(setq org-time-budgets '((:title "Todo" :match "+bills" :budget "30:00" :blocks (workday week))
(:title "Business" :match "+business" :budget "30:00" :blocks (workday week))
(:title "Sideprojects" :match "+personal+project" :budget "14:00" :blocks (day week))
(:title "Practice Music" :match "+music+practice" :budget "2:55" :blocks (nil week))
(:title "Exercise" :match "+exercise" :budget "5:15" :blocks (day))
(:title "Language" :match "+lang" :budget "5:15" :blocks (day week))))

;;;; time budgets table

(setq org-agenda-custom-commands
'(("a" "Agenda"
((agenda "" ((org-agenda-sorting-strategy '(habit-down time-up priority-down category-keep user-defined-up))))
(org-time-budgets-in-agenda-maybe)))))
;;; ...
`

But the table doesn't seem to be picking up any clocked time unfortunately

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant