Collection of odds and ends relating to e-readers including personal reminisces

Background

Reading has been a huge part of my life. The written word has had arguably more of an impact on my life than anything I have experienced in person. As a kid back in early 2000’s; this meant a lot of library trips and saving for paperbacks. I also caught the first wave of the e-ink revolution. Nothing beats a real book, in terms of textures and scents; but e-ink devices and the fantastic tools outlined here should make reading digital books much more palpable 1.

I have been reading on my Kobo Aura HD for almost a decade now, ever since its release. This means my setup is about as stable as its going to get in the near future. As good a time as any to collect my thoughts 2. The focus is on e-ink devices and auxiliary tools; not on all digital content; so there are no mentions of syncing or reading on the go (with a phone) or of monitors which are good for reading on.

The Content

In general; my e-ink reading habits can be broadly broken into the following categories:

Light Reading
Practically this includes anything I review on Goodreads; these are not often re-read; nor read very deeply; since they are read for pleasure. They are however, rarely deleted
Required Reading
Anything which typically requires me to take notes or practice / write out proofs; these are most often considered to be either coursework (for someone somewhere) or research monographs. These are typically large (in size) and unwieldy (in that they often lack TOCs) and are read multiple times; with a focus on highlights and notes
Active Research
These are the most ephemeral of my reading habits; and also the most numerous; I do not typically store these on my e-reader; and rarely need to make notes on the reader 3. These are often tiny; but require special work due to the metadata involved
Content TypeSoftware StackDeletion Rate
Light ReadingCalibreRare
Required ReadingCalibreNever
Active ResearchCalibre + ZoteroFrequent

Though I am a huge proponent of RSS feeds (with Newsflash) and read online content voraciously with both a Pocket and Diigo subscription4; I sincerely do not believe blog stuff or anything tailored for the web should have a presence on an e-ink device; so there shall be no mention of those parts of my reading habits5.

Hardware

My primary e-reader is still my Kobo Aura HD (complete with a snazzy hemp sleep-cover), and has been my go to for almost a decade now since its release. Recently I have augmented my workflow with the reMarkable 2; though I have yet to break it in very well; mostly because I tend to gravitate towards typing out my thoughts 6 instead of writing.

The Kobo Aura HD is still the pinnacle of reading technology to me; mostly because the firmware is easy to bypass; and there is a vibrant community of developers on the MobileRead Forums. Display and spec aside; the biggest reason for never replacing it has been been the simple fact that most modern e-readers no longer support SD cards; and much of my workflow depends on storing insane amounts of material offline 7.

Figure 1: Primary reading device with Koreader

Figure 1: Primary reading device with Koreader

Personally, I never use Nickel (the default Kobo interface), and it would probably choke trying to scan my 200 GB of content; so I haven’t updated the firmware in forever. My interactions are almost always in Koreader; and my launching poison of choice is the now no longer developed Kobo start menu 8.

Software

Broadly speaking; the main parts of the software pipeline from digital book to brain are simply the syncing mechanism and the UI/UX/OS of the device in question; though it is often best to consider pre-processing books for devices too. These are covered in the order used.

k2pdfopt

The thought of reflowing text for an optimal reading experience, especially given the slightly limited processing power of my primary reading device is an enticing prospect. K2pdfopt or the Kindle 2 PDF Optimizer is as criminally underrated as it is fantastic. An approach which works well for my device involves setting up a simple shell script (part of my Dotfiles) for optimizing files on the fly before sending them through calibre.

 1#!/usr/bin/env bash
 2# Get a filename
 3case "$#" in
 40)
 5      echo "No arguments, so enter the filename, WITH the extension"
 6      read -p 'Document: ' docfile
 7      ;;
 81)
 9      echo "OK, using the filename"
10      docfile="$1"
11      ;;
12*)
13      echo "Illegal number of parameters"
14      exit
15      ;;
16esac
17# Get basename
18basename="${docfile%.*}"
19ext="${docfile##*\.}"
20echo "Basename ${basename} with $ext from $docfile"
21echo "Making a local store for the outputs"
22mkdir -p "$HOME/auraHDopt"
23
24case "$ext" in
25"djvu")
26      echo "Converting djvu to pdf via ps and running k2pdfopt"
27      djvups "${basename}.djvu" "${basename}.ps"
28      ps2pdf "${basename}.ps" "${basename}.pdf"
29      # The newline is for simulating the Enter key
30      echo | k2pdfopt "${basename}.pdf" -wrap -hy -ws -0.2 -dev kbhd -x
31      echo "Cleaning up"
32      mv "${basename}_k2opt.pdf" "$HOME/auraHDopt"
33      rm -rf "${basename}.{ps,pdf}"
34      ;;
35"pdf")
36      echo "Converting pdf with gs and running k2pdfopt"
37      gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen \
38              -dNOPAUSE -dQUIET -dBATCH -sOutputFile="${basename}gs.pdf" "${basename}.pdf"
39      echo | k2pdfopt "${basename}gs.pdf" -wrap -hy -ws -0.2 -dev kbhd -x
40      echo "Cleaning up"
41      rm "${basename}gs.pdf" -rf
42      mv "${basename}gs_k2opt.pdf" "$HOME/auraHDopt"
43      ;;
44*)
45      echo "Illegal file type"
46      exit
47      ;;
48esac

The outputs can also be further processed with an OCR (Optical Character Recognition) script if required, and then edited in Master PDF Editor or something similar to add the table of contents interactively as well.

 1#!/bin/bash
 2# Use as  find . -type f -name "*.pdf" -exec isOcr '{}' \;
 3
 4# Shamelessly kanged from here:
 5# https://stackoverflow.com/questions/7997399/bash-script-to-check-pdfs-are-ocrd
 6# Only searches for text on the first 5 pages
 7# Modified to have red text. Also to possibly ocr the thing.
 8
 9# -*- mode: shell-script-mode -*-
10
11MYFONTS=$(pdffonts -l 15 "$1" | tail -n +3 | cut -d' ' -f1 | sort | uniq)
12if [ "$MYFONTS" = '' ] || [ "$MYFONTS" = '[none]' ]; then
13    echo "$(tput setaf 1)NOT OCR'ed: $1"
14    if [[ -x "$(which ocrmypdf)" ]]; then
15        echo "$(tput setaf 4)"
16        echo "Converting to ${1%.*}_ocr.pdf with ocrmypdf"
17        echo "$(tput setaf 7)"
18        ocrmypdf --deskew --clean --rotate-pages \
19            --jobs 4 -v --output-type pdfa "$1" "${1%.*}_ocr.pdf"
20    elif [[ -x "$(which pypdfocr)" ]]; then
21        echo "$(tput setaf 2) Looking for config files at $XDG_CONFIG_HOME/pypdfocr/config.yml"
22        echo "$(tput setaf 3)"
23        if [[ -e $XDG_CONFIG_HOME/pypdfocr/config.yml ]]; then
24            echo "Using configuration settings"
25            echo "$(tput setaf 4)"
26            pypdfocr -c $XDG_CONFIG_HOME/pypdfocr/config.yml "$1"
27        else
28            echo "Using default settings"
29            echo "$(tput setaf 4)"
30            pypdfocr "$1"
31        fi
32        echo "$(tput setaf 2) You might want to get pypdfocr"
33    fi
34else
35    echo "$1 is OCR'ed."
36fi

The end result is:

  • A directory with perfectly pdf files re-flowed text
    • Possibly OCR’ed for string searches

TOC editing is still rather janky; but this is also because the OCR process is still rather spotty.

Calibre

Calibre is an excellent library software, and there are very few alternatives which offer all the salient features:

Syncing
Apart from working well with a plethora of official devices, Koreader is also pretty well supported, and mounting folders allows for easy management of a secret library (e.g. .Library) on an SD card to prevent Nickel from reading and choking on large libraries
Multiple Libraries
I personally keep one for fiction, one for non-fiction, and one (transiently populated) one for papers
Good metadata collection
Nothing beats rich metadata, and with third party plugins, all the best content providers can be leveraged for blurbs; plus most purchased books come with metadata which calibre can read

It isn’t perfect, there are far better OPDS (Open Publication Distribution System) servers like the fantastic COPS (Calibre OPDS) project, and there have been some security concerns in the past, but it is really usable and is under active development; plus it has a fun developer. I also personally find the file conversion lacking, compared to k2pdfopt, but as a library management system it is really good.

Zotero Sync

Calibre provides a handy ZMI (Zotero Metadata Importer) plugin which allows for exported papers to be imported into calibre and from then into the e-reader as expected. Combined with the folder mounts facilitated by calibre this allows for a painless way to ensure a quick export; optimize; sync; read and delete workflow.

Koreader

Koreader is probably the best thing to happen to e-ink devices since sliced bread. It replaces the need to use any cables with an e-reader; since newer versions have a nice SSH server, and can also update itself. Since this is mostly used as is; and all the information required is on the Github Wiki, there’s not much else to say here.

It is probably worth noting that the in-built re-flow options do tend to cause major artifacts on older hardware, and is best avoided. Almost equivalently, and at a far lower cost in terms of performance, page contents can be fit to width and zoomed in automatically, which is almost as good as working with k2pdfopt in some special cases.

Conclusions

Given my unfortunate separation from my library back home; it is likely that my e-ink devices will continue to be my primary source of reading material. Plus the long retarded color e-ink market finally seems to be moving out of its stupor 9. The only possible addendum to this methodology would probably involve integrating orgmode and the reMarkable 2 sometime. E-ink is here to stay. This setup would probably need revisions involving rclone or syncthing if I ever gave up and opted for a “modern” device without an SD slot.


  1. They’re also more convenient than holding a torch in bed with a paperback ↩︎

  2. On an unrelated note, this represents a stylistic departure from older normal posts, with much more of a rambling narrative ↩︎

  3. These are annotated in Emacs with org-mode when necessary ↩︎

  4. Diigo is great for saving storing sites forever and Pocket is just cheaper Instapaper ↩︎

  5. The same can be said of Wikipedia content and tweets; spending time on the written word does not automatically worth putting on an e-reader ↩︎

  6. For which I have been perfecting a rather personalized workflow with Colemak ↩︎

  7. Also why the battery lasts for days without any strain ↩︎

  8. NickelMenu seems to be recommended for newer devices ↩︎

  9. YT video on color and e-ink, YT video on recent color e-ink tech and Verge release notes for the PocketBook InkPad Color ↩︎