2022-04-22 02:54:47 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2022-08-25 19:18:07 +00:00
|
|
|
; inspiration for conditional capture template : https://storax.github.io/blog/2016/05/02/org-capture-tricks/
|
|
|
|
|
|
|
|
; helper functions
|
2023-04-08 16:53:12 +00:00
|
|
|
(defvar my-capture-prmt-history nil
|
2022-08-25 19:18:07 +00:00
|
|
|
"History of prompt answers for org capture.")
|
2023-04-08 16:53:12 +00:00
|
|
|
(defun my/prmt (prompt variable)
|
2022-08-25 19:18:07 +00:00
|
|
|
"PROMPT for string, save it to VARIABLE and insert it."
|
|
|
|
(make-local-variable variable)
|
2023-04-08 16:53:12 +00:00
|
|
|
(set variable (read-string (concat prompt ": ") nil my-capture-prmt-history)))
|
|
|
|
(defun my/inc (what text &rest fmtvars)
|
2022-08-25 19:18:07 +00:00
|
|
|
"Ask user to include WHAT. If user agrees return TEXT."
|
|
|
|
(when (y-or-n-p (concat "Include " what "?"))
|
|
|
|
(apply 'format text fmtvars)))
|
2023-04-08 16:53:12 +00:00
|
|
|
(defun my/inc_date (what prefix)
|
2022-08-25 19:18:07 +00:00
|
|
|
"Ask user to include a date. If user agrees prompt for date."
|
|
|
|
(when (y-or-n-p (concat "Include " what "?"))
|
|
|
|
(concat prefix (org-time-stamp nil))))
|
|
|
|
|
2022-04-22 02:54:47 +00:00
|
|
|
; orgmode capture templates
|
|
|
|
(setq org-capture-templates '(
|
2024-08-30 12:48:18 +00:00
|
|
|
("b" "Book to buy / process" entry
|
|
|
|
(file "~/org/orgzly/_slipbox.org")
|
|
|
|
(file "~/org/_org-capture-templates/template_book.org")
|
|
|
|
:prepend t
|
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
)
|
2023-02-13 13:29:18 +00:00
|
|
|
("d" "TODO (Main)" entry
|
|
|
|
(file "~/org/orgzly/_todo.org")
|
2024-07-28 16:04:59 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_todo.org")
|
2023-02-13 13:29:18 +00:00
|
|
|
:prepend t
|
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
)
|
|
|
|
("s" "TODO (Slipbox)" entry
|
|
|
|
(file "~/org/orgzly/_slipbox.org")
|
2024-07-28 16:04:59 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_slipbox.org")
|
2022-08-25 19:18:07 +00:00
|
|
|
:prepend t
|
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
)
|
2022-04-22 02:54:47 +00:00
|
|
|
("b" "Blog Post" entry
|
2022-08-23 19:21:21 +00:00
|
|
|
(file+headline "~/org/blog/_blog.org" "Drafts")
|
2024-07-28 16:04:59 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_blog.org")
|
2022-04-22 02:54:47 +00:00
|
|
|
)
|
2022-08-24 20:56:22 +00:00
|
|
|
("g" "Gaming")
|
2023-05-02 14:04:02 +00:00
|
|
|
("gd" "Destiny")
|
|
|
|
("gdc" "To Do - Crafted Gun"
|
2022-08-24 20:56:22 +00:00
|
|
|
entry (id "65a28e9e-e484-4722-8a25-4fbf0a8dea2c")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_game_destiny_gun.org")
|
2022-04-22 02:54:47 +00:00
|
|
|
:prepend t
|
2022-08-24 20:56:22 +00:00
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
:unnarrowed "t"
|
2022-04-22 02:54:47 +00:00
|
|
|
)
|
2023-05-02 14:04:02 +00:00
|
|
|
("gw" "Warframe")
|
2024-03-18 13:41:43 +00:00
|
|
|
("gwd" "Daily Reset"
|
|
|
|
entry (file+headline "~/org/games/games_warframe.org" "Daily / Weekly Reset")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_game_warframe_daily_reset.org")
|
2024-03-18 13:41:43 +00:00
|
|
|
:prepend t
|
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
:unnarrowed "t"
|
|
|
|
)
|
|
|
|
("gww" "Weekly Reset"
|
|
|
|
entry (file+headline "~/org/games/games_warframe.org" "Daily / Weekly Reset")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_game_warframe_weekly_reset.org")
|
2024-03-18 13:41:43 +00:00
|
|
|
:prepend t
|
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
:unnarrowed "t"
|
|
|
|
)
|
|
|
|
("gwt" "To Do"
|
|
|
|
entry (file+headline "~/org/games/games_warframe.org" "To Do")
|
2024-07-28 16:33:22 +00:00
|
|
|
"** TODO %^{Heading}\n:LOGBOOK:\n- Created: %U\n:END:%?"
|
2023-05-02 14:04:02 +00:00
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
:unnarrowed "t"
|
|
|
|
:prepend "t"
|
|
|
|
)
|
2022-04-22 02:54:47 +00:00
|
|
|
("h" "Health")
|
2024-03-10 17:32:48 +00:00
|
|
|
("hc" "Couples")
|
|
|
|
("hcd" "Appointment noteworthy developments / [time] in review"
|
2024-09-29 22:22:36 +00:00
|
|
|
entry (file "~/org/orgzly/_slipbox.org")
|
2024-08-08 19:34:37 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_couples_apt_developments.org")
|
2024-03-10 17:32:48 +00:00
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
:unnarrowed "t"
|
|
|
|
:prepend "t"
|
|
|
|
)
|
2022-04-22 02:54:47 +00:00
|
|
|
("hm" "Mike")
|
2022-09-15 21:37:14 +00:00
|
|
|
("hmd" "Appointment noteworthy developments / [time] in review"
|
2024-09-29 22:22:36 +00:00
|
|
|
entry (file "~/org/orgzly/_slipbox.org")
|
|
|
|
"* READY [#A] %^{Heading} :health:appointment:%^g\nDEADLINE: %^t\n:LOGBOOK:\n- Created: %U\n:END:%?"
|
2022-04-22 15:00:10 +00:00
|
|
|
:immediate-finish "f"
|
|
|
|
:jump-to-captured "t"
|
|
|
|
:unnarrowed "t"
|
|
|
|
:prepend "t"
|
|
|
|
)
|
2024-05-27 13:56:12 +00:00
|
|
|
("m" "Music import (beets)" entry
|
2024-07-16 15:49:35 +00:00
|
|
|
(file "~/org/orgzly/_slipbox.org")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_beets.org")
|
2024-05-27 13:56:12 +00:00
|
|
|
:prepend t
|
|
|
|
:immediate-finish "f"
|
2022-04-22 02:54:47 +00:00
|
|
|
:jump-to-captured "t"
|
|
|
|
)
|
|
|
|
("r" "Recipe")
|
|
|
|
("rs" "Standard" plain
|
|
|
|
(file "~/org/culinary/_recipes.org")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_culinary_recipe.org")
|
2022-04-22 02:54:47 +00:00
|
|
|
:empty-lines-before 1
|
|
|
|
)
|
|
|
|
("rb" "Budget Bytes" plain
|
|
|
|
(file "~/org/culinary/_recipes.org")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_culinary_budget_bytes.org")
|
2022-04-22 02:54:47 +00:00
|
|
|
:empty-lines-before 1
|
|
|
|
)
|
|
|
|
("t" "Trip" entry
|
|
|
|
(file+headline "~/org/trips.org" "Planned")
|
2024-07-28 16:33:22 +00:00
|
|
|
(file "~/org/_org-capture-templates/template_trip.org")
|
2022-04-22 02:54:47 +00:00
|
|
|
:empty-lines-before 1
|
|
|
|
)
|
2022-04-22 15:00:10 +00:00
|
|
|
))
|