blob: 81716edb8a332438272648c3ff0b4da1dcc05db9 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/bash
. /usr/share/nvm/init-nvm.sh
make
mkdir -p fonts
{
uni1=`find out -name '*.html' | xargs glyphhanger \
--cssSelector=':not(code, pre, kbd, samp)' \
--jsdom`
pyftsubset /usr/share/fonts/WOFF2/Vollkorn-Regular.woff2 \
--output-file=fonts/vollkorn-regular.woff2 \
--flavor=woff2 \
--layout-features-=locl \
--unicodes="$uni1" \
--no-hinting \
--desubroutinize
pyftsubset /usr/share/fonts/WOFF2/Vollkorn-Italic.woff2 \
--output-file=fonts/vollkorn-italic.woff2 \
--flavor=woff2 \
--layout-features-=locl \
--unicodes="$uni1" \
--no-hinting \
--desubroutinize
} &
{
uni2=`find out -name '*.html' | xargs glyphhanger \
--cssSelector='code, pre, kbd, samp' \
--jsdom`
pyftsubset /usr/share/fonts/iosevka-smooth/woff2-unhinted/iosevka-smooth-regular.woff2 \
--output-file=fonts/iosevka-regular.woff2 \
--flavor=woff2 \
--layout-features-=locl \
--unicodes="$uni2" \
--no-hinting \
--desubroutinize
pyftsubset /usr/share/fonts/iosevka-smooth/woff2-unhinted/iosevka-smooth-italic.woff2 \
--output-file=fonts/iosevka-italic.woff2 \
--flavor=woff2 \
--layout-features-=locl \
--unicodes="$uni2" \
--no-hinting \
--desubroutinize
} &
wait
|