diff options
| author | Craig Jennings <c@cjennings.net> | 2024-08-24 15:16:40 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-08-24 15:16:40 -0500 |
| commit | 61bef7d508e5e2c66c718511194f825893e5a8ac (patch) | |
| tree | b00ee56f820084bc6ae2d0d09c7513ced6b1d3b3 /modules | |
| parent | 586700edc16c058e52227bc85c311d370aa4e8cc (diff) | |
| download | dotemacs-61bef7d508e5e2c66c718511194f825893e5a8ac.tar.gz dotemacs-61bef7d508e5e2c66c718511194f825893e5a8ac.zip | |
update packages to aug 24 2024; minor updates
updating packages to most recent as of Aug 24 2024
add commented help for signature expiration
fix typo in comment on cj/elfeed-mark-all-as-read
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dirvish-config.el | 2 | ||||
| -rw-r--r-- | modules/elfeed-config.el | 2 | ||||
| -rw-r--r-- | modules/org-agenda-config.el | 2 | ||||
| -rw-r--r-- | modules/system-utils.el | 14 |
4 files changed, 16 insertions, 4 deletions
diff --git a/modules/dirvish-config.el b/modules/dirvish-config.el index 66b093df..ea8a184d 100644 --- a/modules/dirvish-config.el +++ b/modules/dirvish-config.el @@ -154,7 +154,7 @@ automatically displayed." ("C-," . dirvish-history-go-backward) ("M-l" . dirvish-ls-switches-menu) ("M-m" . dirvish-mark-menu) - ("M-t" . dirvish-layout-toggle) +;; ("M-t" . dirvish-layout-toggle) ;; todo find another key; M-t is contentious ("M-s" . dirvish-setup-menu) ("M-e" . dirvish-emerge-menu))) diff --git a/modules/elfeed-config.el b/modules/elfeed-config.el index 076b6f1f..2ea9b4a0 100644 --- a/modules/elfeed-config.el +++ b/modules/elfeed-config.el @@ -58,7 +58,7 @@ ;; -------------------------- Elfeed Filter Functions -------------------------- (defun cj/elfeed-mark-all-as-read () - "Temove the 'unread' tag from all elfeed entries visible in the elfeed search buffer." + "Remove the 'unread' tag from all elfeed entries visible in the elfeed search buffer." (interactive) (mark-whole-buffer) (elfeed-search-untag-all-unread)) diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index f15e5503..54b78679 100644 --- a/modules/org-agenda-config.el +++ b/modules/org-agenda-config.el @@ -191,7 +191,7 @@ This allows a line to show in an agenda without being scheduled or a deadline." (open-line 1) (forward-line 1) (insert (concat "<" (format-time-string cj/timeformat (current-time)) " " s ">" )))) -(global-set-key (kbd "M-t") #'cj/add-timestamp-to-org-entry) +;;(global-set-key (kbd "M-t") #'cj/add-timestamp-to-org-entry) ;; --------------------------- Notifications / Alerts -------------------------- ;; send libnotify notifications about agenda items diff --git a/modules/system-utils.el b/modules/system-utils.el index 5451d2f1..5650d225 100644 --- a/modules/system-utils.el +++ b/modules/system-utils.el @@ -315,7 +315,19 @@ with a prefix argument." :config (add-to-list 'proced-format-alist - '(custom user pid ppid sess tree pcpu pmem rss start time state (args comm)))) + '(custom user pid ppid sess tree pcpu pmem rss start time state (args + comm)))) + +;; ------------------------------------ TMR ------------------------------------ + +(use-package tmr + :defer .5 + :bind ("M-t" . tmr-prefix-map) + :config + (setq tmr-sound-file + "/usr/share/sounds/freedesktop/stereo/alarm-clock-elapsed.oga") + (setq tmr-notification-urgency 'normal) + (setq tmr-descriptions-list 'tmr-description-history)) ;; ------------------------------- Who Called Me? ------------------------------ ;; convenience function to display which function called a message |
