Skip to content

rfvgyhn/docker-ligaturizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-ligaturizer

Run ligaturizer via container

Usage

Create an output directory called /output. Create and run the one time use container and get your new font from the /output folder.

Bash

docker run --rm -v $(pwd)/your-font.ttf:/input -v $(pwd)/output:/output --user $(id -u) rfvgyhn/ligaturizer

Powershell

docker run --rm -v "$($pwd.Path -replace '^|\\+','/' -replace ':')/your-font.ttf:/input" -v "$($pwd.Path -replace '^|\\+','/' -replace ':')/output:/output" rfvgyhn/ligaturizer

Volumes

  • /input The font to be ligaturized
  • /output Resulting ligaturized font directory

Options

The following environment variables are available. The values show the defaults used if the var isn't specified.

  • PREFIX= Prefix to be used when naming the new font (e.g. consola.ttf -> ligaturizedConsolas.ttf)
  • OUTPUT_NAME= Resulting font name (defaults to "fontName Ligaturized")

Example

Ligaturized Consolas

Ligaturized Consolas

Releases

No releases published

Packages

No packages published