aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-04-13 15:24:39 +0100
committerAkshay <[email protected]>2020-04-13 15:24:39 +0100
commit8a1f36a567d3d4f3fcaf79a06eea9812c68faa57 (patch)
treede7d9c85af939a524ea6c67494ad1ff40d32b8b2
parent86afd610e79505d0fbc67ff55ae78a6873242cc3 (diff)
add instructions to enable bitmaps
-rw-r--r--INSTALL.md19
1 files changed, 17 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 0296738..9ead25f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,10 +1,25 @@
1# Installation 1# Installation
2 2
3 - [Enable bitmap fonts](#enable-bitmap-fonts)
3 - [Install from release](#install-from-release) 4 - [Install from release](#install-from-release)
4 - [Build from source](#build-from-source) 5 - [Build from source](#build-from-source)
5 - [Verification](#verification) 6 - [Verification](#verification)
6 - [Troubleshooting](#troubleshooting) 7 - [Troubleshooting](#troubleshooting)
7 8
9## Enable bitmap fonts
10
11If you are an Debian/Ubuntu based system, chances are bitmap
12fonts are disabled, go ahead and enable them:
13
14```
15sudo mv /etc/fonts/conf.d/10-* /etc/fonts/conf.avail/
16sudo mv /etc/fonts/conf.d/70-no-bitmaps.conf /etc/fonts/conf.avail/
17```
18
19If you would like to disable them for some reason, simply
20move the files back back from `/etc/fonts/conf.avail` to
21`/etc/fonts/conf.d`.
22
8## Install from release 23## Install from release
9 24
10 1. Grab the latest release from the 25 1. Grab the latest release from the
@@ -25,7 +40,7 @@ cp ttf/* ~/.local/share/fonts/
25# but you may install the otbs if you want to 40# but you may install the otbs if you want to
26cp otb/* ~/.local/share/fonts 41cp otb/* ~/.local/share/fonts
27 42
28# bdfs are not recommendedk 43# bdfs are not recommended
29cp bdf/* ~/.local/share/fonts 44cp bdf/* ~/.local/share/fonts
30``` 45```
31 46
@@ -48,7 +63,7 @@ curl -o BitsNPicas.jar "https://github.com/kreativekorp/bitsnpicas/blob/master/d
481. Open `build.sh` and change variable `BNP` to the full 631. Open `build.sh` and change variable `BNP` to the full
49 path to the BitsNPicas `jar` file. 64 path to the BitsNPicas `jar` file.
50```shell 65```shell
51# for example.: 66# for example:
52export BNP="/home/nerdypepper/downloads/BitsNPicas.jar" 67export BNP="/home/nerdypepper/downloads/BitsNPicas.jar"
53``` 68```
54 69