diff --git a/README.md b/README.md index d4b9477..8f473a2 100644 --- a/README.md +++ b/README.md @@ -6,25 +6,9 @@ This script copies the ligatures (glyphs and rendering information) from [Fira Code](https://github.com/tonsky/FiraCode) into any other TrueType or OpenType font. (Note that the ligatures are scale-corrected, but otherwise copied as is from Fira Code; it doesn't create new ligature graphics based on the font you're modifying.) -**This repo contains 2 things:** -1. Programming fonts with ligatures added (in `output-fonts/`), including: - * [Anonymous Pro](output-fonts/LigaAnonymous_Pro.ttf) - * [CamingoCode](output-fonts/LigaCamingoCode-Regular.ttf) - * Cousine: [Regular](output-fonts/LigaCousine-Regular.ttf), [Bold](output-fonts/LigaCousine-Bold.ttf) - * [DejaVu Sans Mono](output-fonts/LigaDejaVuSansMono.ttf) - * [Droid Sans Mono](output-fonts/LigaDroidSansMono.ttf) - * [edlo](output-fonts/Ligaedlo.ttf) - * Fantasque Sans Mono: [Normal](output-fonts/FantasqueSansMono-Normal), [NoLoopK variant](output-fonts/FantasqueSansMono-NoLoopK) - * [Hack](output-fonts/LigaHack-Regular.ttf) - * [Inconsolata](output-fonts/LigaInconsolata-Regular.ttf) & [Inconsolata-g](output-fonts/LigaInconsolata-g.ttf) - * IBM Plex Mono: [Regular](output-fonts/LigaIBMPlexMono-Regular.ttf), [Semibold](output-fonts/LigaIBMPlexMono-SemiBold.ttf) - * Meslo ([LGL](output-fonts/LigaMesloLGL-Regular.ttf), [LGLDZ](output-fonts/LigaMesloLGLDZ-Regular.ttf), [LGM](output-fonts/LigaMesloLGM-Regular.ttf), [LGMDZ](output-fonts/LigaMesloLGMDZ-Regular.ttf), [LGS](output-fonts/LigaMesloLGS-Regular.ttf), [LGSDZ](output-fonts/LigaMesloLGSDZ-Regular.ttf)) - * [Oxygen Mono](output-fonts/LigaOxygenMono-Regular.ttf) - * [Roboto Mono](output-fonts/LigaRobotoMono-Regular.ttf) - * SF Mono: [Regular](output-fonts/LigaSFMono-Regular.ttf), [Semibold](output-fonts/LigaSFMono-Semibold.ttf) - * [Ubuntu Mono](output-fonts/LigaUbuntuMono-Regular.ttf) +This repo contains a [Fontforge python script](ligaturize.py) that you can use to add the Fira Code ligatures to any font, as well as submodules for some popular coding fonts and [another script](build.py) for ligaturizing all of them at once. -2. A fontforge python script ([ligaturize.py](ligaturize.py)) that you can use to add the Fira Code ligatures to any other font you like. +Pre-ligaturized versions are available under [releases](https://github.com/ToxicFrog/Ligaturizer/releases). Here's a couple examples of the fonts generated: SF Mono & Menlo with ligatures (note the `!=` and `->`): ![](images/sf-mono.png) @@ -44,14 +28,14 @@ Use automatic mode to easily convert 1 or more font(s). 1. Edit `ligatures.py` to disable any ligatures you don't want, and/or enable any (non-ligature) characters you want from Fira Code in addition to the ligatures. 1. Edit `build.py` to add your new font(s) to the `prefixed_fonts` list. It supports globbing, so if (e.g.) you want to ligaturize all the different weights of FooFont you can add `'FooFont*'` to the list. 1. Run `make`. -1. Retrieve the ligaturized fonts from `output-fonts/`. +1. Retrieve the ligaturized fonts from `fonts/output/`. 1. The output fonts will be renamed with the prefix "Liga". ### Manual ### 1. Move/copy the font you want to ligaturize into `fonts/` (or somewhere else convenient). -2. Edit `ligatures.py` to disable any ligatures you don't want. -3. Run the script: +1. Edit `ligatures.py` to disable any ligatures you don't want. +1. Run the script: ``` $ fontforge -lang py -script ligaturize.py path/to/input/font.ttf @@ -62,11 +46,11 @@ Use automatic mode to easily convert 1 or more font(s). ``` $ fontforge -lang py -script ligaturize.py fonts/Cousine-Regular.ttf - --output-dir='fonts/' \ + --output-dir='fonts/output/' \ --output-name='Ligaturized Cousine' ``` - Which will produce `fonts/LigaturizedCousine-Regular.ttf`. + Which will produce `fonts/output/LigaturizedCousine-Regular.ttf`. The font weight will be inherited from the original file; the font name will be replaced with whatever you specified in `--output-name`. You can also use `--prefix` instead, in which case the original name will be preserved and whatever you put in `--prefix` will be prepended to it. diff --git a/build.py b/build.py index 98ba453..69b5d31 100644 --- a/build.py +++ b/build.py @@ -85,7 +85,7 @@ for pattern in prefixed_fonts: sys.exit(1) for input_file in files: ligaturize_font( - input_file, ligature_font_file=None, output_dir='output-fonts/', + input_file, ligature_font_file=None, output_dir='fonts/output/', prefix=LIGATURIZED_FONT_NAME_PREFIX, output_name=None, copy_character_glyphs=COPY_CHARACTER_GLYPHS, scale_character_glyphs_threshold=SCALE_CHARACTER_GLYPHS_THRESHOLD) @@ -97,7 +97,7 @@ for pattern,name in renamed_fonts.iteritems(): sys.exit(1) for input_file in files: ligaturize_font( - input_file, ligature_font_file=None, output_dir='output-fonts/', + input_file, ligature_font_file=None, output_dir='fonts/output/', prefix=None, output_name=name, copy_character_glyphs=COPY_CHARACTER_GLYPHS, scale_character_glyphs_threshold=SCALE_CHARACTER_GLYPHS_THRESHOLD) diff --git a/fonts/output/.gitignore b/fonts/output/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/fonts/output/.gitignore @@ -0,0 +1 @@ +* diff --git a/ligaturize.py b/ligaturize.py index db8a36c..6321ebd 100644 --- a/ligaturize.py +++ b/ligaturize.py @@ -109,8 +109,7 @@ class LigatureCreator(object): """Copy individual (non-ligature) characters from the ligature font.""" if not self.should_copy_character_glyphs: return - print("Copying %d character glyphs from %s..." % ( - len(chars), self.firacode.fullname)) + print(" ...copying %d character glyphs..." % (len(chars))) for char in chars: self.firacode.selection.none() diff --git a/output-fonts/LigaCousine-Bold.ttf b/output-fonts/LigaCousine-Bold.ttf deleted file mode 100644 index a11340c..0000000 Binary files a/output-fonts/LigaCousine-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaCousine-BoldItalic.ttf b/output-fonts/LigaCousine-BoldItalic.ttf deleted file mode 100644 index 6108d79..0000000 Binary files a/output-fonts/LigaCousine-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaCousine-Italic.ttf b/output-fonts/LigaCousine-Italic.ttf deleted file mode 100644 index 307143d..0000000 Binary files a/output-fonts/LigaCousine-Italic.ttf and /dev/null differ diff --git a/output-fonts/LigaCousine.ttf b/output-fonts/LigaCousine.ttf deleted file mode 100644 index 43da30f..0000000 Binary files a/output-fonts/LigaCousine.ttf and /dev/null differ diff --git a/output-fonts/LigaDejaVuSansMono-Bold.ttf b/output-fonts/LigaDejaVuSansMono-Bold.ttf deleted file mode 100644 index e4e546c..0000000 Binary files a/output-fonts/LigaDejaVuSansMono-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaDejaVuSansMono-BoldOblique.ttf b/output-fonts/LigaDejaVuSansMono-BoldOblique.ttf deleted file mode 100644 index 6ea95b0..0000000 Binary files a/output-fonts/LigaDejaVuSansMono-BoldOblique.ttf and /dev/null differ diff --git a/output-fonts/LigaDejaVuSansMono-Oblique.ttf b/output-fonts/LigaDejaVuSansMono-Oblique.ttf deleted file mode 100644 index 3366c02..0000000 Binary files a/output-fonts/LigaDejaVuSansMono-Oblique.ttf and /dev/null differ diff --git a/output-fonts/LigaDejaVuSansMono.ttf b/output-fonts/LigaDejaVuSansMono.ttf deleted file mode 100644 index f369172..0000000 Binary files a/output-fonts/LigaDejaVuSansMono.ttf and /dev/null differ diff --git a/output-fonts/LigaDroidSansMono.ttf b/output-fonts/LigaDroidSansMono.ttf deleted file mode 100644 index 329e4d0..0000000 Binary files a/output-fonts/LigaDroidSansMono.ttf and /dev/null differ diff --git a/output-fonts/LigaEdlo.ttf b/output-fonts/LigaEdlo.ttf deleted file mode 100644 index 276b168..0000000 Binary files a/output-fonts/LigaEdlo.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMono-Bold.ttf b/output-fonts/LigaFantasqueSansMono-Bold.ttf deleted file mode 100644 index 78c4630..0000000 Binary files a/output-fonts/LigaFantasqueSansMono-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMono-BoldItalic.ttf b/output-fonts/LigaFantasqueSansMono-BoldItalic.ttf deleted file mode 100644 index ca1cfa9..0000000 Binary files a/output-fonts/LigaFantasqueSansMono-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMono-RegItalic.ttf b/output-fonts/LigaFantasqueSansMono-RegItalic.ttf deleted file mode 100644 index e445b25..0000000 Binary files a/output-fonts/LigaFantasqueSansMono-RegItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMono-Regular.ttf b/output-fonts/LigaFantasqueSansMono-Regular.ttf deleted file mode 100644 index df8744f..0000000 Binary files a/output-fonts/LigaFantasqueSansMono-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMonoNoLoopK-Bold.ttf b/output-fonts/LigaFantasqueSansMonoNoLoopK-Bold.ttf deleted file mode 100644 index 1f507ef..0000000 Binary files a/output-fonts/LigaFantasqueSansMonoNoLoopK-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMonoNoLoopK-BoldItalic.ttf b/output-fonts/LigaFantasqueSansMonoNoLoopK-BoldItalic.ttf deleted file mode 100644 index 40feece..0000000 Binary files a/output-fonts/LigaFantasqueSansMonoNoLoopK-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMonoNoLoopK-Italic.ttf b/output-fonts/LigaFantasqueSansMonoNoLoopK-Italic.ttf deleted file mode 100644 index 39bb2ea..0000000 Binary files a/output-fonts/LigaFantasqueSansMonoNoLoopK-Italic.ttf and /dev/null differ diff --git a/output-fonts/LigaFantasqueSansMonoNoLoopK-Regular.ttf b/output-fonts/LigaFantasqueSansMonoNoLoopK-Regular.ttf deleted file mode 100644 index 968cb07..0000000 Binary files a/output-fonts/LigaFantasqueSansMonoNoLoopK-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaHack-Bold.ttf b/output-fonts/LigaHack-Bold.ttf deleted file mode 100644 index 849b149..0000000 Binary files a/output-fonts/LigaHack-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaHack-BoldItalic.ttf b/output-fonts/LigaHack-BoldItalic.ttf deleted file mode 100644 index 05460c9..0000000 Binary files a/output-fonts/LigaHack-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaHack-Italic.ttf b/output-fonts/LigaHack-Italic.ttf deleted file mode 100644 index 656dfba..0000000 Binary files a/output-fonts/LigaHack-Italic.ttf and /dev/null differ diff --git a/output-fonts/LigaHack-Regular.ttf b/output-fonts/LigaHack-Regular.ttf deleted file mode 100644 index 60f1b1c..0000000 Binary files a/output-fonts/LigaHack-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaInconsolata-Bold.ttf b/output-fonts/LigaInconsolata-Bold.ttf deleted file mode 100644 index 4835290..0000000 Binary files a/output-fonts/LigaInconsolata-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaInconsolata-Regular.ttf b/output-fonts/LigaInconsolata-Regular.ttf deleted file mode 100644 index e5d496e..0000000 Binary files a/output-fonts/LigaInconsolata-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaMesloLGMDZ-Bold.ttf b/output-fonts/LigaMesloLGMDZ-Bold.ttf deleted file mode 100644 index 9f68d06..0000000 Binary files a/output-fonts/LigaMesloLGMDZ-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaMesloLGMDZ-BoldItalic.ttf b/output-fonts/LigaMesloLGMDZ-BoldItalic.ttf deleted file mode 100644 index d061b71..0000000 Binary files a/output-fonts/LigaMesloLGMDZ-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaMesloLGMDZ-Italic.ttf b/output-fonts/LigaMesloLGMDZ-Italic.ttf deleted file mode 100644 index 28d8d3a..0000000 Binary files a/output-fonts/LigaMesloLGMDZ-Italic.ttf and /dev/null differ diff --git a/output-fonts/LigaMesloLGMDZ-Regular.ttf b/output-fonts/LigaMesloLGMDZ-Regular.ttf deleted file mode 100644 index 406b68c..0000000 Binary files a/output-fonts/LigaMesloLGMDZ-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaO2Mono-Regular.ttf b/output-fonts/LigaO2Mono-Regular.ttf deleted file mode 100644 index cf11915..0000000 Binary files a/output-fonts/LigaO2Mono-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaRobotoMono-Bold.ttf b/output-fonts/LigaRobotoMono-Bold.ttf deleted file mode 100644 index e2ae494..0000000 Binary files a/output-fonts/LigaRobotoMono-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaRobotoMono-BoldItalic.ttf b/output-fonts/LigaRobotoMono-BoldItalic.ttf deleted file mode 100644 index 5fb2cc4..0000000 Binary files a/output-fonts/LigaRobotoMono-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigaRobotoMono-Italic.ttf b/output-fonts/LigaRobotoMono-Italic.ttf deleted file mode 100644 index 0a6b8b4..0000000 Binary files a/output-fonts/LigaRobotoMono-Italic.ttf and /dev/null differ diff --git a/output-fonts/LigaRobotoMono-Regular.ttf b/output-fonts/LigaRobotoMono-Regular.ttf deleted file mode 100644 index 3e6251a..0000000 Binary files a/output-fonts/LigaRobotoMono-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-Black.ttf b/output-fonts/LigaSrcPro-Black.ttf deleted file mode 100644 index 3fdf801..0000000 Binary files a/output-fonts/LigaSrcPro-Black.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-BlackIt.ttf b/output-fonts/LigaSrcPro-BlackIt.ttf deleted file mode 100644 index dade97e..0000000 Binary files a/output-fonts/LigaSrcPro-BlackIt.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-Bold.ttf b/output-fonts/LigaSrcPro-Bold.ttf deleted file mode 100644 index 9bf516c..0000000 Binary files a/output-fonts/LigaSrcPro-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-BoldIt.ttf b/output-fonts/LigaSrcPro-BoldIt.ttf deleted file mode 100644 index 8bdff2f..0000000 Binary files a/output-fonts/LigaSrcPro-BoldIt.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-ExtraLight.ttf b/output-fonts/LigaSrcPro-ExtraLight.ttf deleted file mode 100644 index 545bd99..0000000 Binary files a/output-fonts/LigaSrcPro-ExtraLight.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-ExtraLightIt.ttf b/output-fonts/LigaSrcPro-ExtraLightIt.ttf deleted file mode 100644 index 01bd8a2..0000000 Binary files a/output-fonts/LigaSrcPro-ExtraLightIt.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-It.ttf b/output-fonts/LigaSrcPro-It.ttf deleted file mode 100644 index a04192e..0000000 Binary files a/output-fonts/LigaSrcPro-It.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-Light.ttf b/output-fonts/LigaSrcPro-Light.ttf deleted file mode 100644 index 23e56e2..0000000 Binary files a/output-fonts/LigaSrcPro-Light.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-LightIt.ttf b/output-fonts/LigaSrcPro-LightIt.ttf deleted file mode 100644 index 32620a5..0000000 Binary files a/output-fonts/LigaSrcPro-LightIt.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-Medium.ttf b/output-fonts/LigaSrcPro-Medium.ttf deleted file mode 100644 index f808429..0000000 Binary files a/output-fonts/LigaSrcPro-Medium.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-MediumIt.ttf b/output-fonts/LigaSrcPro-MediumIt.ttf deleted file mode 100644 index 797322e..0000000 Binary files a/output-fonts/LigaSrcPro-MediumIt.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-Regular.ttf b/output-fonts/LigaSrcPro-Regular.ttf deleted file mode 100644 index 4ec890b..0000000 Binary files a/output-fonts/LigaSrcPro-Regular.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-Semibold.ttf b/output-fonts/LigaSrcPro-Semibold.ttf deleted file mode 100644 index c0d29b8..0000000 Binary files a/output-fonts/LigaSrcPro-Semibold.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcPro-SemiboldIt.ttf b/output-fonts/LigaSrcPro-SemiboldIt.ttf deleted file mode 100644 index 8b9aed4..0000000 Binary files a/output-fonts/LigaSrcPro-SemiboldIt.ttf and /dev/null differ diff --git a/output-fonts/LigaSrcVariable-Roman.ttf b/output-fonts/LigaSrcVariable-Roman.ttf deleted file mode 100644 index 485106f..0000000 Binary files a/output-fonts/LigaSrcVariable-Roman.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-Bold.ttf b/output-fonts/LigalexMono-Bold.ttf deleted file mode 100644 index f289b6e..0000000 Binary files a/output-fonts/LigalexMono-Bold.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-BoldItalic.ttf b/output-fonts/LigalexMono-BoldItalic.ttf deleted file mode 100644 index 33a604b..0000000 Binary files a/output-fonts/LigalexMono-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-ExtraLight.ttf b/output-fonts/LigalexMono-ExtraLight.ttf deleted file mode 100644 index ef73f8f..0000000 Binary files a/output-fonts/LigalexMono-ExtraLight.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-ExtraLightItalic.ttf b/output-fonts/LigalexMono-ExtraLightItalic.ttf deleted file mode 100644 index a9645ae..0000000 Binary files a/output-fonts/LigalexMono-ExtraLightItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-Italic.ttf b/output-fonts/LigalexMono-Italic.ttf deleted file mode 100644 index 8d86f6f..0000000 Binary files a/output-fonts/LigalexMono-Italic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-Light.ttf b/output-fonts/LigalexMono-Light.ttf deleted file mode 100644 index 9510529..0000000 Binary files a/output-fonts/LigalexMono-Light.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-LightItalic.ttf b/output-fonts/LigalexMono-LightItalic.ttf deleted file mode 100644 index 28ced9a..0000000 Binary files a/output-fonts/LigalexMono-LightItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-Medium.ttf b/output-fonts/LigalexMono-Medium.ttf deleted file mode 100644 index b5148a0..0000000 Binary files a/output-fonts/LigalexMono-Medium.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-MediumItalic.ttf b/output-fonts/LigalexMono-MediumItalic.ttf deleted file mode 100644 index ee13517..0000000 Binary files a/output-fonts/LigalexMono-MediumItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-SemiBold.ttf b/output-fonts/LigalexMono-SemiBold.ttf deleted file mode 100644 index ef511fa..0000000 Binary files a/output-fonts/LigalexMono-SemiBold.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-SemiBoldItalic.ttf b/output-fonts/LigalexMono-SemiBoldItalic.ttf deleted file mode 100644 index 22864e0..0000000 Binary files a/output-fonts/LigalexMono-SemiBoldItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-Text.ttf b/output-fonts/LigalexMono-Text.ttf deleted file mode 100644 index 3fe5aca..0000000 Binary files a/output-fonts/LigalexMono-Text.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-TextItalic.ttf b/output-fonts/LigalexMono-TextItalic.ttf deleted file mode 100644 index 887266f..0000000 Binary files a/output-fonts/LigalexMono-TextItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-Thin.ttf b/output-fonts/LigalexMono-Thin.ttf deleted file mode 100644 index 189c2bd..0000000 Binary files a/output-fonts/LigalexMono-Thin.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono-ThinItalic.ttf b/output-fonts/LigalexMono-ThinItalic.ttf deleted file mode 100644 index fdf8eca..0000000 Binary files a/output-fonts/LigalexMono-ThinItalic.ttf and /dev/null differ diff --git a/output-fonts/LigalexMono.ttf b/output-fonts/LigalexMono.ttf deleted file mode 100644 index 78aa7a6..0000000 Binary files a/output-fonts/LigalexMono.ttf and /dev/null differ diff --git a/output-fonts/Liganymous-Bold.ttf b/output-fonts/Liganymous-Bold.ttf deleted file mode 100644 index cbab31c..0000000 Binary files a/output-fonts/Liganymous-Bold.ttf and /dev/null differ diff --git a/output-fonts/Liganymous-BoldItalic.ttf b/output-fonts/Liganymous-BoldItalic.ttf deleted file mode 100644 index df7c81c..0000000 Binary files a/output-fonts/Liganymous-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/Liganymous-Italic.ttf b/output-fonts/Liganymous-Italic.ttf deleted file mode 100644 index 4765dd6..0000000 Binary files a/output-fonts/Liganymous-Italic.ttf and /dev/null differ diff --git a/output-fonts/Liganymous.ttf b/output-fonts/Liganymous.ttf deleted file mode 100644 index fd3d573..0000000 Binary files a/output-fonts/Liganymous.ttf and /dev/null differ diff --git a/output-fonts/UbuntuMonoLigaturized-Bold.ttf b/output-fonts/UbuntuMonoLigaturized-Bold.ttf deleted file mode 100644 index fd5fe26..0000000 Binary files a/output-fonts/UbuntuMonoLigaturized-Bold.ttf and /dev/null differ diff --git a/output-fonts/UbuntuMonoLigaturized-BoldItalic.ttf b/output-fonts/UbuntuMonoLigaturized-BoldItalic.ttf deleted file mode 100644 index d704670..0000000 Binary files a/output-fonts/UbuntuMonoLigaturized-BoldItalic.ttf and /dev/null differ diff --git a/output-fonts/UbuntuMonoLigaturized-Italic.ttf b/output-fonts/UbuntuMonoLigaturized-Italic.ttf deleted file mode 100644 index 5dee2e4..0000000 Binary files a/output-fonts/UbuntuMonoLigaturized-Italic.ttf and /dev/null differ diff --git a/output-fonts/UbuntuMonoLigaturized-Regular.ttf b/output-fonts/UbuntuMonoLigaturized-Regular.ttf deleted file mode 100644 index b4da5a1..0000000 Binary files a/output-fonts/UbuntuMonoLigaturized-Regular.ttf and /dev/null differ