blob: f945a339782c7b340987fc056e3a5cf59acffbca (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | #!/bin/sh
. /usr/share/nvm/init-nvm.sh
make
mkdir -p src/fonts
uni=`find out -name '*.html' | xargs glyphhanger \
	--cssSelector='code, pre, kbd, samp, :where(code, pre, kbd, samp) *'`
pyftsubset /usr/share/fonts/iosevka-smooth/woff2-unhinted/iosevka-smooth-regular.woff2 \
	--output-file=src/fonts/iosevka-regular.woff2 \
	--flavor=woff2 \
	--layout-features-=locl \
	--unicodes="$uni" \
	--no-hinting \
	--desubroutinize
pyftsubset /usr/share/fonts/iosevka-smooth/woff2-unhinted/iosevka-smooth-italic.woff2 \
	--output-file=src/fonts/iosevka-italic.woff2 \
	--flavor=woff2 \
	--layout-features-=locl \
	--unicodes="$uni" \
	--no-hinting \
	--desubroutinize
 |