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 >
2022-11-26 12:07:34 +02:00
{% assign upN = font.unpatchedName | split: " " | join: "" %}
{% assign pN = font.patchedName | split: " " | join: "" %}
2023-01-17 14:57:24 +02:00
{% if font.RFN == true or upN != pN %}< div > < strong > • {% if font.RFN == true %}Reserved{% else %}Original{% endif %} Font Name:< / strong > {{ font.unpatchedName }}< / div > {% endif %}
2020-12-05 12:25:00 +02:00
< 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 >
2023-01-30 09:59:21 +02:00
< div class = "center" markdown = "1" >
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
```
2023-01-30 09:59:21 +02:00
< / div >
< p / >
2019-08-18 19:23:37 +02:00
< h3 class = "center" > :// curl < / h3 >
2023-01-30 09:59:21 +02:00
< div align = "center" markdown = "1" >
2019-08-02 08:57:41 +02:00
```sh
2022-11-26 12:07:34 +02:00
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
2019-08-02 08:57:41 +02:00
```
2019-08-02 23:12:02 +02:00
< / div >
2023-01-30 09:59:21 +02:00
< p / >
2019-08-18 19:23:37 +02:00
< h3 class = "center" > < span > < / span > Bash Install Script < / h3 >
2023-01-30 09:59:21 +02:00
< div align = "center" markdown = "1" >
2019-08-02 08:57:41 +02:00
```sh
./install.sh < FontName >
```
2019-08-02 23:12:02 +02:00
< / div >
2023-01-30 09:59:21 +02:00
< p / >
2023-01-30 09:48:18 +02:00
< h3 class = "center" > < span > < / span > Arch Community Repository< / h3 >
2019-08-18 19:23:37 +02:00
< div markdown = "1" class = "center" >
2023-05-02 16:00:42 +02:00
Search [Nerd Fonts Packages ](https://archlinux.org/groups/any/nerd-fonts/ ) or some special packages in [AUR ](https://aur.archlinux.org/packages?K=nerd-fonts-&outdated=off )
2019-08-02 23:12:02 +02:00
< / div >