Docs: drop intro blurb and use real account examples

Remove the top intro paragraph and the Emacs version note from the
README, and update the efinger-accounts examples to the two accounts
actually used, labelling the personal one "Andros".
This commit is contained in:
Andros Fenollosa 2026-08-18 13:00:21 +02:00
parent d1b6664a2a
commit 9a80d68374
2 changed files with 8 additions and 12 deletions

View file

@ -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. 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 ## How it works
``` ```
@ -115,8 +111,8 @@ M-x package-install RET efinger RET
:rev :newest) :rev :newest)
:config :config
(setq efinger-accounts (setq efinger-accounts
'("random@happynetbox.com" '(("random" "random@happynetbox.com")
("Backup Box ring" "ring@thebackupbox.net")))) ("Andros" "me@andros.dev"))))
``` ```
### use-package with :load-path ### use-package with :load-path
@ -128,8 +124,8 @@ For manual installation or Emacs < 29:
:load-path "/path/to/efinger.el" :load-path "/path/to/efinger.el"
:config :config
(setq efinger-accounts (setq efinger-accounts
'("random@happynetbox.com" '(("random" "random@happynetbox.com")
("Backup Box ring" "ring@thebackupbox.net")))) ("Andros" "me@andros.dev"))))
``` ```
### Manual ### Manual
@ -146,8 +142,8 @@ Then add to your init file:
(add-to-list 'load-path "/path/to/efinger.el") (add-to-list 'load-path "/path/to/efinger.el")
(require 'efinger) (require 'efinger)
(setq efinger-accounts (setq efinger-accounts
'("random@happynetbox.com" '(("random" "random@happynetbox.com")
("Backup Box ring" "ring@thebackupbox.net"))) ("Andros" "me@andros.dev")))
``` ```
## Usage ## Usage

View file

@ -43,8 +43,8 @@
;; Usage: ;; Usage:
;; ;;
;; (setq efinger-accounts ;; (setq efinger-accounts
;; '("random@happynetbox.com" ;; '(("random" "random@happynetbox.com")
;; ("Backup Box ring" "ring@thebackupbox.net"))) ;; ("Andros" "me@andros.dev")))
;; ;;
;; M-x efinger - open the two-pane reader ;; M-x efinger - open the two-pane reader
;; M-x efinger-finger - finger a single account ;; M-x efinger-finger - finger a single account