2017-04-22 23:41:03 +02:00
|
|
|
---
|
2018-03-11 19:35:55 +02:00
|
|
|
title: "Fonts Downloads"
|
|
|
|
short_title: "Fonts"
|
2019-08-04 18:15:18 +02:00
|
|
|
bg: '#1E5D8A'
|
2017-04-22 23:41:03 +02:00
|
|
|
color: white
|
|
|
|
fa-icon: download
|
2019-07-23 23:33:49 +02:00
|
|
|
page: font-downloads
|
2017-04-22 23:41:03 +02:00
|
|
|
---
|
|
|
|
|
2019-08-18 19:23:37 +02:00
|
|
|
<h1 class="center">Downloads</h1>
|
2017-04-22 23:41:03 +02:00
|
|
|
|
2019-08-18 19:23:37 +02:00
|
|
|
<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">
|
2022-09-11 20:42:28 +02:00
|
|
|
<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')">
|
2019-08-18 19:23:37 +02:00
|
|
|
</a>
|
2020-12-05 12:25:00 +02:00
|
|
|
{% if font.unpatchedName != font.patchedName %}<div><strong>• Reserved Font Name:</strong> {{ font.unpatchedName }}</div>{% endif %}
|
|
|
|
<div><strong>• Info:</strong> {{ font.description }}</div>
|
|
|
|
<div class="nerd-font-buttons-wrapper">
|
2022-09-11 20:42:28 +02:00
|
|
|
<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>
|
2019-08-25 00:01:25 +02:00
|
|
|
{% if font.linkPreviewFont != false %}
|
2020-12-05 12:25:00 +02:00
|
|
|
<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>
|
2019-08-25 00:01:25 +02:00
|
|
|
{% endif %}
|
2019-08-18 19:23:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2017-04-23 02:43:50 +02:00
|
|
|
</div>
|
2019-08-18 19:23:37 +02:00
|
|
|
|
2019-08-02 08:57:41 +02:00
|
|
|
<div class="clear"></div>
|
|
|
|
|
|
|
|
|
2019-08-18 19:23:37 +02:00
|
|
|
<h2 class="center"> Other Download & Install Options </h2>
|
2019-08-02 23:12:02 +02:00
|
|
|
|
2019-08-18 19:23:37 +02:00
|
|
|
<h3 class="center"> <span></span> Homebrew </h3>
|
2019-08-02 08:57:41 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
brew tap homebrew/cask-fonts &&
|
2021-04-28 05:04:22 +02:00
|
|
|
brew install --cask font-<FONT NAME>-nerd-font
|
2019-08-02 08:57:41 +02:00
|
|
|
```
|
|
|
|
|
2019-08-18 19:23:37 +02:00
|
|
|
<h3 class="center"> :// curl </h3>
|
2019-08-02 23:12:02 +02:00
|
|
|
<div markdown="1">
|
2019-08-02 08:57:41 +02:00
|
|
|
```sh
|
2019-08-04 00:03:56 +02:00
|
|
|
curl -fLo "<FONT NAME> Nerd Font Complete.otf" \
|
|
|
|
https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/<FONT_PATH>/complete/<FONT_NAME>%20Nerd%20Font%20Complete.otf
|
2019-08-02 08:57:41 +02:00
|
|
|
```
|
2019-08-02 23:12:02 +02:00
|
|
|
</div>
|
2019-08-18 19:23:37 +02:00
|
|
|
<h3 class="center"> <span></span> Bash Install Script </h3>
|
2019-08-02 23:12:02 +02:00
|
|
|
<div markdown="1">
|
2019-08-02 08:57:41 +02:00
|
|
|
```sh
|
|
|
|
./install.sh <FontName>
|
|
|
|
```
|
2019-08-02 23:12:02 +02:00
|
|
|
</div>
|
2019-08-18 19:23:37 +02:00
|
|
|
<h3 class="center"> <span></span> Unofficial Arch User Repository (AUR) </h3>
|
|
|
|
<div markdown="1" class="center">
|
2019-08-02 08:57:41 +02:00
|
|
|
See: [Nerd Fonts Packages](https://aur.archlinux.org/packages/?K=nerd-fonts&SB=p)
|
2019-08-02 23:12:02 +02:00
|
|
|
</div>
|