diff options
author | EuAndreh <eu@euandre.org> | 2021-01-21 22:03:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-21 22:03:10 -0300 |
commit | 6d5fd6dd0a1c0a927876f7786c406ce19c78c20e (patch) | |
tree | f4d873b8b33d4acf9fbd5c9c34d490fda5fe9e73 /README.md | |
parent | Add COPYING (diff) | |
download | remembering-6d5fd6dd0a1c0a927876f7786c406ce19c78c20e.tar.gz remembering-6d5fd6dd0a1c0a927876f7786c406ce19c78c20e.tar.xz |
Add current working files
Diffstat (limited to '')
-rw-r--r-- | README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..6e12832 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# remembering + +Add memory to [`dmenu`][dmenu], [`fzf`][fzf] and similar tools. + +Replace: +```shell +$ ls | fzf +``` + +with: +```shell +$ ls | remembering -p fzf-sample -c fzf +``` + +and see your previous choices from `fzf` start to appear at the beginning of the list. + +[dmenu]: https://tools.suckless.org/dmenu/ +[fzf]: https://github.com/junegunn/fzf + +## Installation + +Get the latest tarball and install it: + +```shell +wget https://git.euandreh.xyz/remembering/snapshot/remembering-0.1.0.tar.gz +pax -rzf remembering-0.1.0.tar.gz +cd remembering-0.1.0 +[sudo] make install +``` |