commit 299390390d30b2f2838d76df988be34fe0f80080 parent ef77dd39a7eac233619971f9dcb99235b58308b5 Author: rexim <reximkut@gmail.com> Date: Thu, 16 Feb 2023 15:22:19 +0700 Introduce fonts/ folder Diffstat:
| R | VictorMono-Regular.ttf -> fonts/VictorMono-Regular.ttf | | | 0 | |
| R | iosevka-regular.ttf -> fonts/iosevka-regular.ttf | | | 0 | |
| M | src/main.c | | | 4 | ++-- |
3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VictorMono-Regular.ttf b/fonts/VictorMono-Regular.ttf Binary files differ. diff --git a/iosevka-regular.ttf b/fonts/iosevka-regular.ttf Binary files differ. diff --git a/src/main.c b/src/main.c @@ -65,8 +65,8 @@ int main(int argc, char **argv) } // TODO: users should be able to customize the font - // const char *const font_file_path = "./VictorMono-Regular.ttf"; - const char *const font_file_path = "./iosevka-regular.ttf"; + // const char *const font_file_path = "./fonts/VictorMono-Regular.ttf"; + const char *const font_file_path = "./fonts/iosevka-regular.ttf"; FT_Face face; error = FT_New_Face(library, font_file_path, 0, &face);
