nerd-fonts/_posts/2017-01-03-downloads.md

58 lines
2.2 KiB
Markdown
Raw Normal View History

---
2018-03-11 18:35:55 +01:00
title: "Fonts Downloads"
short_title: "Fonts"
2019-08-04 18:15:18 +02:00
bg: '#1E5D8A'
color: white
fa-icon: download
2019-07-23 23:33:49 +02:00
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>
{% if font.unpatchedName != font.patchedName %}<div><strong>&bull; Reserved Font Name:</strong> {{ font.unpatchedName }}</div>{% endif %}
<div><strong>&bull; 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 %}
2017-04-23 02:43:50 +02:00
</div>
<div class="clear"></div>
<h2 class="center"> Other Download & Install Options </h2>
2019-08-02 23:12:02 +02:00
<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>
2019-08-02 23:12:02 +02:00
<div markdown="1">
```sh
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 23:12:02 +02:00
</div>
<h3 class="center"> <span></span> Bash Install Script </h3>
2019-08-02 23:12:02 +02:00
<div markdown="1">
```sh
./install.sh <FontName>
```
2019-08-02 23:12:02 +02:00
</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)
2019-08-02 23:12:02 +02:00
</div>