diff --git a/README.md b/README.md index 8b5e0bb..af8e466 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,6 @@ A client for the [Finger protocol](https://www.rfc-editor.org/rfc/rfc1288.html) (RFC 1288) with an [Elfeed](https://github.com/skeeto/elfeed)-inspired reader for Emacs. -Requires Emacs 28.1 or later. - -Finger, born at Stanford in 1971, is arguably the first social network: your whole profile lives in a plain-text `.plan` file that anyone can read with `finger you@your-host`. John Carmack famously kept his DOOM/Quake development diary this way. Efinger lets you keep a list of accounts and browse their `.plan` files from a two-pane interface, the same way you follow feeds in Elfeed. For the story behind the protocol, see [Finger: la red social de 1971](https://andros.dev/blog/79c99190/finger-la-red-social-de-1971-que-nunca-llego-a-morir/). - ## How it works ``` @@ -115,8 +111,8 @@ M-x package-install RET efinger RET :rev :newest) :config (setq efinger-accounts - '("random@happynetbox.com" - ("Backup Box ring" "ring@thebackupbox.net")))) + '(("random" "random@happynetbox.com") + ("Andros" "me@andros.dev")))) ``` ### use-package with :load-path @@ -128,8 +124,8 @@ For manual installation or Emacs < 29: :load-path "/path/to/efinger.el" :config (setq efinger-accounts - '("random@happynetbox.com" - ("Backup Box ring" "ring@thebackupbox.net")))) + '(("random" "random@happynetbox.com") + ("Andros" "me@andros.dev")))) ``` ### Manual @@ -146,8 +142,8 @@ Then add to your init file: (add-to-list 'load-path "/path/to/efinger.el") (require 'efinger) (setq efinger-accounts - '("random@happynetbox.com" - ("Backup Box ring" "ring@thebackupbox.net"))) + '(("random" "random@happynetbox.com") + ("Andros" "me@andros.dev"))) ``` ## Usage diff --git a/efinger.el b/efinger.el index d7c6594..3d8af3b 100644 --- a/efinger.el +++ b/efinger.el @@ -43,8 +43,8 @@ ;; Usage: ;; ;; (setq efinger-accounts -;; '("random@happynetbox.com" -;; ("Backup Box ring" "ring@thebackupbox.net"))) +;; '(("random" "random@happynetbox.com") +;; ("Andros" "me@andros.dev"))) ;; ;; M-x efinger - open the two-pane reader ;; M-x efinger-finger - finger a single account