Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/live-timers
List timers with live updating
https://github.com/karimaziev/live-timers
Last synced: 4 days ago
JSON representation
List timers with live updating
- Host: GitHub
- URL: https://github.com/karimaziev/live-timers
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2023-06-28T08:21:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-09T13:01:51.000Z (5 days ago)
- Last Synced: 2024-11-09T13:23:37.852Z (5 days ago)
- Language: Emacs Lisp
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+OPTIONS: ^:nil tags:nil
* About
Add auto-refresh for bultin command ~list-timers~.
* Table of Contents :TOC_2_gh:QUOTE:
#+BEGIN_QUOTE
- [[#about][About]]
- [[#requirements][Requirements]]
- [[#installation][Installation]]
- [[#with-use-package-and-straightel][With use-package and straight.el]]
- [[#manual-installation][Manual installation]]
- [[#usage][Usage]]
- [[#customization][Customization]]
#+END_QUOTE* Requirements
| Name | Version |
|-------+---------|
| Emacs | 26.1 |* Installation
** With use-package and straight.el
#+begin_src elisp :eval no
(use-package live-timers
:straight (live-timers
:repo "KarimAziev/live-timers"
:type git
:host github)
:hook (timer-list-mode . live-timers-live-mode))
#+end_src** Manual installation
Download the source code and put it wherever you like, e.g. into =~/.emacs.d/live-timers/=
#+begin_src shell :eval no
git clone https://github.com/KarimAziev/live-timers.git ~/.emacs.d/live-timers/
#+end_srcAdd the downloaded directory to the load path:
#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/live-timers/")
(require 'live-timers)(add-hook 'timer-list-mode-hook #'live-timers-live-mode)
#+end_src* Usage
Add ~live-timers-live-mode~ to ~timer-list-mode-hook~ and run ~M-x list-timers~:
#+begin_src emacs-lisp
(add-hook 'timer-list-mode-hook #'live-timers-live-mode)
(list-timers)
#+end_src** Customization
**** ~live-timers-refresh-delay~
How many seconds to wait before refreshing entries in =timer-list-mode=.