mirror of
https://github.com/vale981/pomm.el
synced 2025-03-04 17:21:43 -05:00
Merge branch 'master' of github.com:SqrtMinusOne/pomm.el
This commit is contained in:
commit
c7eef01fba
1 changed files with 12 additions and 5 deletions
17
README.org
17
README.org
|
@ -1,5 +1,7 @@
|
||||||
#+TITLE: pomm.el
|
#+TITLE: pomm.el
|
||||||
|
|
||||||
|
[[https://melpa.org/#/pomm][file:https://melpa.org/packages/pomm-badge.svg]]
|
||||||
|
|
||||||
Yet another implementation of a [[https://en.wikipedia.org/wiki/Pomodoro_Technique][pomodoro timer]] for Emacs.
|
Yet another implementation of a [[https://en.wikipedia.org/wiki/Pomodoro_Technique][pomodoro timer]] for Emacs.
|
||||||
|
|
||||||
[[./img/screenshot.png]]
|
[[./img/screenshot.png]]
|
||||||
|
@ -14,18 +16,23 @@ This particular package features:
|
||||||
None of the available [[*Alternatives][alternatives]] were doing quite what I wanted, and the idea of the timer is quite simple, so I figured I'd implement one myself.
|
None of the available [[*Alternatives][alternatives]] were doing quite what I wanted, and the idea of the timer is quite simple, so I figured I'd implement one myself.
|
||||||
|
|
||||||
* Installation
|
* Installation
|
||||||
While the package is available only in this repository, one way to install is to clone the repository, add the package to the =load-path= and load it with =require=:
|
The package is available on MELPA. Install it however you usually install Emacs packages, e.g.
|
||||||
#+begin_src emacs-lisp
|
#+begin_example
|
||||||
(require 'pomm)
|
M-x package-install pomm
|
||||||
#+end_src
|
#+end_example
|
||||||
|
|
||||||
My preferred way is =use-package= with =straight.el=:
|
My preferred way is =use-package= with =straight.el=:
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package pomm
|
(use-package pomm
|
||||||
:straight (:host github :repo "SqrtMinusOne/pomm.el")
|
:straight t
|
||||||
:commands (pomm))
|
:commands (pomm))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
Or you can clone the repository, add the package to the =load-path= and load it with =require=:
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(require 'pomm)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
The package requires Emacs 27.1 because the time API of the previous versions is kinda crazy and 27.1 has =time-convert=.
|
The package requires Emacs 27.1 because the time API of the previous versions is kinda crazy and 27.1 has =time-convert=.
|
||||||
* Usage
|
* Usage
|
||||||
Run =M-x pomm= to open the transient buffer.
|
Run =M-x pomm= to open the transient buffer.
|
||||||
|
|
Loading…
Add table
Reference in a new issue