https://github.com/fscheidt/fonts
fonts families
https://github.com/fscheidt/fonts
truetype ttf typeface
Last synced: 5 months ago
JSON representation
fonts families
- Host: GitHub
- URL: https://github.com/fscheidt/fonts
- Owner: fscheidt
- Created: 2024-07-28T14:02:25.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-11T21:38:51.000Z (over 1 year ago)
- Last Synced: 2025-04-07T18:17:32.050Z (about 1 year ago)
- Topics: truetype, ttf, typeface
- Homepage:
- Size: 34.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fonts
## Instalação
### ubuntu
fazer o download do repositório como arquivo zip:
```bash
wget https://github.com/fscheidt/fonts/releases/download/v1/fonts.zip
```
#### System wide
Instalar as fontes para todos os usuários:
```bash
sudo cp *.ttf /usr/share/fonts/truetype/
fc-cache -f -v
```
#### User only
Instalar apenas para o usuário:
```bash
mkdir ~/.fonts
cp *.ttf ~/.fonts
fc-cache -f -v
```
## Verificação
Lista as fontes instaladas:
```bash
fc-list : family | sort | uniq
```