blob: 07ddde5c0981fcfb40fba5e8d5eb328b53cdb141 (
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
|
# bollux - a bash Gemini client
inspired by
* [birch](https://github.com/dylanaraps/birch)
* [castor](https://git.sr.ht/~julienxx/castor)
* [gemini](https://gemini.circumlunar.space/)
# CAPABILITIES
* make requests
* receive files
* use `dd` to show a nice little download status
* use `less` to display text/* files
* link navigation
* man page
* configuration
# STILL TO DO
* history --
SEE the [history branch](https://git.sr.ht/~acdw/bollux/tree/history)
* test configuring capabilities
* bookmarks
* mailcap something
* generate certificates?
* implement TOFU?
* recognize more protocols
# INSTALL
## From source
```
$ git clone https://git.sr.ht/~acdw/bollux
$ cd bollux
# make install
```
## Alternative
```
$ curl -fLo bollux https://git.sr.ht/~acdw/bollux/blob/0.2.2/bollux
$ chmod +x bollux
$ ./bollux
```
It's a bash script, so just plop it in your $PATH somewhere.
# LICENSE
MIT
# CONTRIBUTING
Feel free to write to my
[public inbox](https://lists.sr.ht/~acdw/public-inbox)
with changes you'd like to make, or submit an issue to the
[ticket tracker.](https://todo.sr.ht/~acdw/bollux)
|