blob: 09975bdf1df958174d8a68a47a199acad7e23916 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# bk
bk is a WIP terminal Epub reader, written in Rust.
# Features
- Cross platform - Linux, macOS and Windows support
- Single binary, instant startup
- Epub 2/3 support
- Vim bindings
- Incremental search
- Bookmarks
# Install
Install from crates.io:
cargo install bk
or from github:
git clone https://github.com/aeosynth/bk
cargo install --path bk
# Usage
Usage: bk [<path>] [-m] [-t] [-w <width>]
read a book
Options:
-m, --meta print metadata and exit
-t, --toc start with table of contents open
-w, --width characters per line
--help display usage information
Running `bk` without a path will load the most recent Epub.
Type any function key (eg <kbd>F1</kbd>) to see the keybinds.
# Configuration alternatives
- Theming: theme your terminal
- Config file: create an alias with cli options
# Comparison
| | bk | epr/epy |
| - | - | - |
| language | rust | python |
| runtime deps | none | python, curses |
| styled tags | see 1 | :x: |
| incremental search | :heavy_check_mark: | :x: |
| multi line search | :heavy_check_mark: | :x: |
| regex search | :x: | :heavy_check_mark: |
| links | :x: | :x: |
| images | :x: | :heavy_check_mark: |
| themes | :x: | :heavy_check_mark: |
| choose file from history | :x: | :heavy_check_mark: |
| additional formats | :x: | FictionBook |
| external integration | see 2 | dictionary |
1: headers (h1-h6) are bolded
2: you can use the `--meta` switch to use `bk` as a file previewer with eg [nnn](https://github.com/jarun/nnn/)
# Inspiration
<https://github.com/wustho/epr>
|