Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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