2021-05-11 17:37:59 +02:00
|
|
|
# fonts
|
|
|
|
|
|
|
|
For font configuration, see: [archwiki#font-config](https://wiki.archlinux.org/index.php/Font_configuration)
|
|
|
|
|
|
|
|
|
|
|
|
## types of fonts
|
|
|
|
|
|
|
|
Outline formats
|
|
|
|
|
|
|
|
* TrueType by Apple and Microsoft (file extension: `ttf`)
|
|
|
|
* OpenType by Microsoft, built on TrueType (file extensions: `otf`, `ttf`)
|
|
|
|
|
|
|
|
## installed fonts
|
|
|
|
|
|
|
|
[https://wiki.archlinux.org/index.php/Fonts#Tips_and_tricks](https://wiki.archlinux.org/index.php/Fonts#Tips_and_tricks)
|
|
|
|
|
|
|
|
List all fonts:
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
fc-list
|
|
|
|
```
|
|
|
|
|
|
|
|
To search for monospace fonts supporting a particular Unicode codepoint:
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
fc-match -s monospace:charset=1F4A9
|
|
|
|
```
|
|
|
|
|
|
|
|
## Font packages
|
|
|
|
|
|
|
|
[archwiki](https://wiki.archlinux.org/index.php/Fonts#Font_packages)
|
|
|
|
|
|
|
|
Install fonts with _Unicode_ keyword.
|
|
|
|
|
|
|
|
## installation
|
|
|
|
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
sudo pacman -S --needed noto-fonts
|
|
|
|
```
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
aur sync -c ttf-google-fonts-git
|
|
|
|
```
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
aur sync -c ttf-ms-fonts
|
|
|
|
```
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
* [https://typeof.net/Iosevka/]()
|
2021-05-11 17:37:59 +02:00
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
aur sync -c ttf-iosevka
|
|
|
|
```
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
aur sync -c ttf-iosevka-term
|
|
|
|
```
|
|
|
|
|
|
|
|
## emoji font
|
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
- [https://wiki.archlinux.org/index.php/Fonts#Emoji_and_symbols]()
|
2021-05-11 17:37:59 +02:00
|
|
|
|
2022-04-24 19:38:51 +02:00
|
|
|
```shell
|
2021-05-11 17:37:59 +02:00
|
|
|
sudo pacman -S --needed noto-fonts-emoji
|
|
|
|
```
|