2024-07-10 08:34:45 +00:00
|
|
|
;;
|
|
|
|
;; Helper functions for the dashboard
|
|
|
|
;;
|
|
|
|
|
|
|
|
(defun thwap/dashboard-insert-logo-title (banner)
|
2024-07-10 08:52:22 +00:00
|
|
|
"Insert BANNER into the dashboard buffer.
|
|
|
|
BANNER can be a single string, which will be centered, or a list of strings,
|
|
|
|
which will be displayed with line breaks between them."
|
2024-07-10 08:34:45 +00:00
|
|
|
(insert "\n")
|
|
|
|
;; if banner is a single string, display it in the center
|
|
|
|
;; else if it is a list of strings, display them with line breaks
|
|
|
|
(if (stringp banner)
|
|
|
|
(insert (propertize banner 'face 'dashboard-banner-logo-title))
|
|
|
|
(dolist (line banner)
|
|
|
|
(insert (propertize line 'face 'dashboard-banner-logo-title))
|
|
|
|
(insert "\n"))))
|
|
|
|
|
|
|
|
(defun thwap/dashboard-build-logo-title (lst)
|
2024-07-10 08:52:22 +00:00
|
|
|
"Build a list of strings from LST to display as the banner.
|
|
|
|
LST is reversed and concatenated into a single string with line breaks."
|
2024-07-10 08:34:45 +00:00
|
|
|
(mapconcat 'identity (reverse lst) "\n"))
|
|
|
|
|
|
|
|
(defun thwap/random-string-from-list (strings)
|
2024-07-10 08:52:22 +00:00
|
|
|
"Return a random string from STRINGS."
|
2024-07-10 08:34:45 +00:00
|
|
|
(let ((index (random (length strings))))
|
|
|
|
(nth index strings)))
|
|
|
|
|
|
|
|
;;
|
|
|
|
;; Helper functions for general use
|
|
|
|
;;
|
|
|
|
|
2024-07-10 08:52:22 +00:00
|
|
|
;; Function to create a directory if it doesn't exist
|
|
|
|
(defun thwap/ensure-directory-exists (dir)
|
|
|
|
"Ensure the directory DIR exists. If not, create it."
|
|
|
|
(unless (file-directory-p dir)
|
|
|
|
(make-directory dir t)))
|
|
|
|
|
2024-07-10 08:34:45 +00:00
|
|
|
;; Function to list all files in a directory with a given extension
|
|
|
|
(defun thwap/list-files-with-extension (dir extension)
|
|
|
|
"Recursively list all files in DIR with the given EXTENSION, suitable for org-agenda-files."
|
|
|
|
(let ((files '()))
|
|
|
|
(dolist (file (directory-files-recursively dir (concat "\\." extension "\\'")))
|
|
|
|
(push file files))
|
|
|
|
(nreverse files)))
|
|
|
|
|
|
|
|
;;
|
|
|
|
;; Helper functions for org mode
|
|
|
|
;;
|
|
|
|
|
|
|
|
;; Function to get a unique filename for Org-capture
|
|
|
|
(defun thwap/org-capture-get-unique-filename ()
|
|
|
|
"Generate a unique filename for Org-capture."
|
|
|
|
(let ((filename (format "~/.org-agenda/syncup__issue__%s.org" (format-time-string "%Y%m%d%H%M%S"))))
|
|
|
|
(message "Inside function: Generated filename: %s" filename)
|
|
|
|
filename))
|
|
|
|
|
|
|
|
;; Function to update org-agenda-files
|
|
|
|
(defun thwap/org-agenda-files-update ()
|
2024-07-10 08:52:22 +00:00
|
|
|
"Update the `org-agenda-files` variable.
|
|
|
|
This function sets `org-agenda-files` and `org-timeblock-files` to the list of
|
|
|
|
all `.org` files in the `~/.org-agenda` directory, and sets
|
|
|
|
`org-timeblock-inbox-file` to `~/.org-agenda/tasks.org`."
|
2024-07-10 08:34:45 +00:00
|
|
|
(setq org-agenda-files (thwap/list-files-with-extension "~/.org-agenda" "org"))
|
|
|
|
(setq org-timeblock-files (thwap/list-files-with-extension "~/.org-agenda" "org"))
|
|
|
|
(setq org-timeblock-inbox-file "~/.org-agenda/tasks.org"))
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'thwap-helpers)
|
|
|
|
;;; thwap-helpers.el ends here
|