Patch MonoLisa with Nerd Fonts
Go to file
github-actions[bot] ae6ae25f3e chore: change batteries 2024-04-15 02:58:28 +00:00
.github/workflows ci: use correct github actions user 2023-09-29 18:37:19 -05:00
MonoLisa add gitignore and needed subfolders 2021-11-09 11:51:56 -06:00
assets docs: update help.svg 2023-01-29 21:57:17 -06:00
bin chore: change batteries 2024-04-15 02:58:28 +00:00
patched add gitignore and needed subfolders 2021-11-09 11:51:56 -06:00
src/glyphs chore: change batteries 2024-04-15 02:58:28 +00:00
.gitignore build: add package for nix run 2024-01-30 20:40:47 -06:00
.pre-commit-config.yaml chore: specify formatter in flake 2024-03-31 11:15:54 -05:00
.task.cfg.mk build: bump task.mk version again 2023-01-29 21:57:06 -06:00
.task.mk chore: update .task.mk 2024-02-21 15:37:52 -06:00
LICENSE chore: use only ruff 2024-01-30 20:34:03 -06:00
Makefile feat: upgrade to nf v3.0.0 2023-05-02 16:10:49 -05:00
README.md docs: update monolisa version 2024-02-10 14:41:38 -06:00
flake.lock Clean up the Nix flake, recommended practices, provide overlay (#6) 2024-02-10 14:36:03 -06:00
flake.nix chore: specify formatter in flake 2024-03-31 11:15:54 -05:00
font-patcher chore: change batteries 2024-04-15 02:58:28 +00:00
patch-monolisa fix(#7): just ignore encoding errors 2024-03-25 10:38:02 -05:00

README.md

MonoLisa NF

Most Batteries included repo to patch MonoLisa with Nerd Fonts glyphs

tested w/ MonoLisa-Basic-2.012

Getting Started

Dependencies

  • python
  • make (optional)
  • fontforge OR docker

There are some caveats to invoking the font-patcher script. Some of which are explained by nerd fonts. To use font-patcher with fontforge first ensure it is installed (or see below for docker approach).

On Arch:

sudo pacman -S fontforge

You can also download the version for your system from the releases in the fontforge repo.

If you prefer to use docker rather than install fontforge you can add ARGS='--docker' to calls to make patch.

Next you may clone the repo to fetch the needed symbols/scripts for patching:

git clone --depth 1 git@github.com:daylinmorgan/monolisa-nerdfont-patch.git

Downloading MonoLisa

Once you have acquired MonoLisa, follow the link in your email to download it. Then extract the .zip file of the type you've downloaded into MonoLisa/.

The expected directory structure is below. You only need to download the font types you plan to use.

MonoLisa
├── otf
├── ttf
├── woff
└── woff2

Patching your font

Once you have downloaded MonoLisa and fontforge you can easily apply the nerd font patches with make.

To patch all font types use the default patch rule.

make # or ./patch-monolisa -f MonoLisa -c

By default the complete (-c) flag is passed to the font-patcher script to include all icons/symbols. You can change this by specifying the ARGS at runtime.

ARGS="-c -w" make patch

See ./patch-monolisa --help and ./bin/font-patcher --help for available ARGS.

You can find your patched fonts in the patched/ directory

If like me you want to place your patched fonts in a standard location on your Unix system you can move them to ~/.local/share/fonts/MonoLisa with the bin/update-fonts script.

Or for simplicity you can copy the fonts and update the cache with:

make update-fonts

You can verify the fonts have been added with make check.

with Nix

You can run using the included flake.nix.

nix run "github:daylinmorgan/monolisa-nerdfont-patch"

Contributing

Before making changes to to any of the scripts in bin you should first install pre-commit. Followed by setting up the pre-commit hooks locally.

pipx install pre-commit
pre-commit install

Special Thanks