From 6fe33daf17a69d1df2b8d9019cd512b6db7aa9a2 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 3 Oct 2020 10:33:23 +0200 Subject: [PATCH] Allow for fine-grained effort estimation for tasks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are often small tasks that do not require the former minimum of 15 minutes, resulting in effort estimations that are too high. Conversely, larger tasks are often hard to estimate correctly, which is why the higher numbers are now further apart. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 78b5451..37e28b8 100644 --- a/init.el +++ b/init.el @@ -756,7 +756,7 @@ org-treat-S-cursor-todo-selection-as-state-change nil org-global-properties - '(("Effort_ALL" . "0:00 0:15 0:30 0:45 1:00 2:00 3:00 4:00 5:00 6:00")) + '(("Effort_ALL" . "0:00 0:05 0:10 0:15 0:30 0:45 1:00 2:00 3:00 4:00 6:00 8:00")) org-columns-default-format "%80ITEM(Task) %10Effort(Effort){:} %10CLOCKSUM")