3 releases

0.1.2 Dec 9, 2023
0.1.1 Jul 28, 2023
0.1.0 Jul 28, 2023

#308 in GUI

Download history 2/week @ 2024-02-19 9/week @ 2024-02-26 8/week @ 2024-03-11 57/week @ 2024-04-01

65 downloads per month

MIT/Apache

2MB
18K SLoC

egui_nerdfonts

Bundles Nerd Fonts icons for egui.

NerdFonts

Installation

Add the crate as a dependency in Cargo.toml:

egui_nerdfonts = "0.1.2"

or type cargo add egui_nerdfonts, in your project.

Usage

First, update the fonts in your egui context:

let mut fonts = egui::FontDefinitions::default();
egui_nerdfonts::add_to_fonts(&mut fonts, egui_nerdfonts::Variant::Regular);

let egui_ctx = Context::default();
egui_ctx.set_fonts(fonts);

Choose nerdfonts icons you want to use among these.

Then use nerdfonts icons as follow:

ui.label(format!("{}", egui_nerdfonts::regular::NF_DEV_RUST));

Example

cargo run --example rust_logo

output

About

Got inspired by egui_phosphor, code uses the same structure.

The .ttf used is this one, and the src/variants/regular.rs was generated with the following python script, with the nerdfonts_regular.ttf as first argument:

from itertools import chain
from fontTools.ttLib import TTFont
from fontTools.unicode import Unicode
import sys

with TTFont(
    sys.argv[1], 0, allowVID=0, ignoreDecompileErrors=True, fontNumber=-1
) as ttf:
    chars = chain.from_iterable(
        [y + (Unicode[y[0]],) for y in x.cmap.items()] for x in ttf["cmap"].tables
    )
    for char in chars:
        symbol_name = char[1].upper().replace('-', '_').replace(' ', '_').replace('#', '_').replace('!', '')
        code = r"\u" + "{" + f"{char[0]:X}" + "}"
        print(f"pub const {symbol_name}: &str = \"{code}\";")

Dependencies

~4–11MB
~78K SLoC