mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-10 00:43:15 -06:00
35 lines
826 B
Makefile
35 lines
826 B
Makefile
-include .env
|
|
ARGS ?= -c
|
|
|
|
NF_SRC := $(shell ./bin/get-font-files src)
|
|
FONT_FLAGS := $(shell ./bin/get-font-files MonoLisa 'otf,ttf,woff,woff2')
|
|
|
|
patch: ./bin/font-patcher ## apply nerd fonts patch |> -gs b_magenta -ms bold
|
|
@./bin/patch-monolisa \
|
|
$(FONT_FLAGS) \
|
|
$(ARGS)
|
|
|
|
update-fonts: ## move fonts and update fc-cache
|
|
$(call msg,Adding Fonts To System)
|
|
@./bin/update-fonts
|
|
@fc-cache -f -v
|
|
|
|
check: ## check fc-list for MonoLisa
|
|
$(call msg,Checking System for Fonts)
|
|
@fc-list | grep "MonoLisa"
|
|
|
|
update-src: ## update nerd fonts source
|
|
$(call msg,Updating Source Files)
|
|
@./bin/update-src
|
|
|
|
lint: ## run pre-commit hooks
|
|
@pre-commit run --all
|
|
|
|
clean: ## remove patched fonts
|
|
@rm -rf patched/*
|
|
|
|
# depends on daylinmorgan/yartsu
|
|
assets/help.svg:
|
|
yartsu -o $@ -t 'make help' -- $(MAKE) -s help
|
|
|
|
-include .task.cfg.mk
|