mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-12-19 20:12:52 +02:00
76ebfee144
[why] We detect if a font has a reserved font name RFN by comparing unpatched and patched names. In the patched names we remove blanks from the original name, example "BigBlue Terminal" -> "BigBlueTerminal Nerd Font" In the fonts.json database we store "BigBlueTerminal" as `.patchedName`. For our RFN detection we need to set the `.unpatchedName` also to "BigBlueTerminal", which is strictly speaking not correct. [how] Compare `.unpatchedName` and `.patchedName` without taking the blanks into account: Remove them before comparing. [note] This is needed to finally have the correct original names in the database, which will be used for the Casks creation. [note] Also unify the shell commands (remove whitespaces). Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
60 lines
2.3 KiB
Markdown
60 lines
2.3 KiB
Markdown
---
|
|
title: "Fonts Downloads"
|
|
short_title: "Fonts"
|
|
bg: '#1E5D8A'
|
|
color: white
|
|
fa-icon: download
|
|
page: font-downloads
|
|
---
|
|
|
|
<h1 class="center">Downloads</h1>
|
|
|
|
<div class="d-flex flex-row flex-wrap align-items-stretch justify-content-betweeen justify-content-aroundd justify-content-center">
|
|
{% for font in site.data.fonts.fonts %}
|
|
<div class="item">
|
|
<a href="https://github.com/ryanoasis/nerd-fonts/releases/download/v{{ site.current_version }}/{{ font.folderName }}.zip" class="font-preview" style="background-image: url('/assets/img/previews/{{ font.imagePreviewFont }}.svg')">
|
|
</a>
|
|
{% assign upN = font.unpatchedName | split: " " | join: "" %}
|
|
{% assign pN = font.patchedName | split: " " | join: "" %}
|
|
{% if upN != pN %}<div><strong>• Reserved Font Name:</strong> {{ font.unpatchedName }}</div>{% endif %}
|
|
<div><strong>• Info:</strong> {{ font.description }}</div>
|
|
<div class="nerd-font-buttons-wrapper">
|
|
<a href="https://github.com/ryanoasis/nerd-fonts/releases/download/v{{ site.current_version }}/{{ font.folderName }}.zip" class="inlineblock bg-green border-white text-white nerd-font-button nf-fa-download">Download</a>
|
|
{% if font.linkPreviewFont != false %}
|
|
<a href="https://www.programmingfonts.org/#{{ font.linkPreviewFont }}" target="_blank" alt="Full Preview of {{ font.patchedName }} on ProgrammingFonts.org" class="inlineblock bg-purple border-white text-white nerd-font-button nf-oct-link_external">Preview on ProgrammingFonts.org</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
|
|
<h2 class="center"> Other Download & Install Options </h2>
|
|
|
|
<h3 class="center"> <span></span> Homebrew </h3>
|
|
|
|
```sh
|
|
brew tap homebrew/cask-fonts &&
|
|
brew install --cask font-<FONT NAME>-nerd-font
|
|
```
|
|
|
|
<h3 class="center"> :// curl </h3>
|
|
<div markdown="1">
|
|
```sh
|
|
curl -fLo "<FONT NAME> Nerd Font Complete.otf" \
|
|
https://github.com/ryanoasis/nerd-fonts/raw/HEAD/patched-fonts/<FONT_PATH>/complete/<FONT_NAME>%20Nerd%20Font%20Complete.otf
|
|
```
|
|
</div>
|
|
<h3 class="center"> <span></span> Bash Install Script </h3>
|
|
<div markdown="1">
|
|
```sh
|
|
./install.sh <FontName>
|
|
```
|
|
</div>
|
|
<h3 class="center"> <span></span> Unofficial Arch User Repository (AUR) </h3>
|
|
<div markdown="1" class="center">
|
|
See: [Nerd Fonts Packages](https://aur.archlinux.org/packages/?K=nerd-fonts&SB=p)
|
|
</div>
|