diff options
| author | bard <[email protected]> | 2024-03-23 21:59:51 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-03-23 21:59:51 -0400 |
| commit | 7f144e1950e8a81780554a70d08441a6c7b7d2a6 (patch) | |
| tree | 98287f6219b84c3e53dc430661164713b95257b9 /bard-emacs-modules/bard-emacs-time.el | |
| parent | 88520c3865dbe24cfb6f5830ce13e7b89864f0ab (diff) | |
reformat packages and move to module files
Diffstat (limited to 'bard-emacs-modules/bard-emacs-time.el')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-time.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bard-emacs-modules/bard-emacs-time.el b/bard-emacs-modules/bard-emacs-time.el index 3ee370e..b10640c 100644 --- a/bard-emacs-modules/bard-emacs-time.el +++ b/bard-emacs-modules/bard-emacs-time.el @@ -26,4 +26,22 @@ (define-key global-map (kbd "C-c C-w") #'world-clock) +;; timer package +(use-package tmr + :ensure t + :config + (setq tmr-sound-file "/home/bard/.local/bin/scripts/bell.mp3") + (setq tmr-notification-urgency 'normal) + (setq tmr-descriptions-list 'tmr-description-history) + (define-key global-map (kbd "C-c t l") 'tmr-tabulated-view) + (define-key global-map (kbd "C-c t t") #'tmr) + (define-key global-map (kbd "C-c t T") #'tmr-with-description) + (define-key global-map (kbd "C-c t l") #'tmr-tabulated-view) + (define-key global-map (kbd "C-c t c") #'tmr-clone) + (define-key global-map (kbd "C-c t k") #'tmr-cancel) + (define-key global-map (kbd "C-c t s") #'tmr-reschedule) + (define-key global-map (kbd "C-c t e") #'tmr-edit-description) + (define-key global-map (kbd "C-c t r") #'tmr-remove) + (define-key global-map (kbd "C-c t R") #'tmr-remove-finished)) + (provide 'bard-emacs-time) |
