summaryrefslogtreecommitdiff
path: root/README.org
blob: 152bfcb626f119cce27903cc7fe2037ff97ac8a5 (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
#+author: Benjamin Chausse

* SiXKCD: XKCD comics in the sixel format

XKCD is great. What's even better is viewing his comics
directly in your terminal using sixel graphics!

To achieve this, you need a terminal that supports it.
Here's a good reference to find one or learn if yours
already does:

[[https://www.arewesixelyet.com/]]

#+HTML:<center>
[[./demo.png]]
#+HTML:</center>

** Installation

I'll probably create a =Makefile= in the future
to streamline the process. In the meantime, you
can build the binary in the following way.

#+begin_src sh
# Creating the binary
go get download
go build -o sixkcd ./sixkcd.go
# Installing it on your system
sudo cp sixkcd /usr/local/bin
#+end_src

Uninstalling is as simple as:

#+begin_src sh
sudo rm /usr/local/bin/sixkcd
#+end_src