Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zcaudate/eta-logger
keylogger for emacs
https://github.com/zcaudate/eta-logger
Last synced: 25 days ago
JSON representation
keylogger for emacs
- Host: GitHub
- URL: https://github.com/zcaudate/eta-logger
- Owner: zcaudate
- License: mit
- Created: 2021-01-15T18:13:30.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T18:33:39.000Z (about 4 years ago)
- Last Synced: 2024-11-14T12:47:35.991Z (3 months ago)
- Language: Emacs Lisp
- Size: 2.93 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE.md
Awesome Lists containing this project
README
#+AUTHOR: Chris Zheng
#+EMAIL: [email protected]
#+OPTIONS: toc:nil
#+STARTUP: showall** Introduction
[[https://github.com/zcaudate/eta-logger][eta-logger]] is a simple keylogging implementation based from [[https://gist.github.com/darius/bf4d3f82114a937f63bf][this gist]]. It saves all commands, line numbers and buffers to a rotating log file for later playback and extraction of statistics. It assumes that emacs is not being used to input any sensative information and only records within buffers.
Modes can be excluded from being logged.
** Installation
~eta-logger~ has been submitted to [[https://github.com/melpa/melpa/][Melpa]] and is going through the review
process. In the meantime, it can be installed directly via:~quepa~
#+BEGIN_SRC emacs-lisp
(use-package eta-logger :ensure t
:quelpa ((eta :fetcher github :repo "zcaudate/eta-logger")))
#+END_SRC~straight~
#+BEGIN_SRC emacs-lisp
(straight-use-package
'(eta-logger :type git :host github :repo "zcaudate/eta-logger")
#+END_SRC