File tree Expand file tree Collapse file tree 5 files changed +110
-0
lines changed
Expand file tree Collapse file tree 5 files changed +110
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # ////////////////////////////////////////////////////////////
4+ #
5+ # line10.sh
6+ # A shell script that modifies all .otf and .ttf fonts to
7+ # 10% UPM line spacing
8+ # Copyright 2016 Christopher Simpkins
9+ # MIT License
10+ #
11+ # ////////////////////////////////////////////////////////////
12+
13+ # Check for font-line application
14+ which font-line
15+
16+ # if not present install it
17+ if [[ $? -ne 0 ]]; then
18+ pip install font-line
19+ fi
20+
21+ # modify all .ttf and .otf files with 10% UPM line spacing
22+ font-line percent 10 * .ttf * .otf
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # ////////////////////////////////////////////////////////////
4+ #
5+ # line15.sh
6+ # A shell script that modifies all .otf and .ttf fonts to
7+ # 15% UPM line spacing
8+ # Copyright 2016 Christopher Simpkins
9+ # MIT License
10+ #
11+ # ////////////////////////////////////////////////////////////
12+
13+ # Check for font-line application
14+ which font-line
15+
16+ # if not present install it
17+ if [[ $? -ne 0 ]]; then
18+ pip install font-line
19+ fi
20+
21+ # modify all .ttf and .otf files with 15% UPM line spacing
22+ font-line percent 15 * .ttf * .otf
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # ////////////////////////////////////////////////////////////
4+ #
5+ # line20.sh
6+ # A shell script that modifies all .otf and .ttf fonts to
7+ # 20% UPM line spacing
8+ # Copyright 2016 Christopher Simpkins
9+ # MIT License
10+ #
11+ # ////////////////////////////////////////////////////////////
12+
13+ # Check for font-line application
14+ which font-line
15+
16+ # if not present install it
17+ if [[ $? -ne 0 ]]; then
18+ pip install font-line
19+ fi
20+
21+ # modify all .ttf and .otf files with 20% UPM line spacing
22+ font-line percent 20 * .ttf * .otf
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # ////////////////////////////////////////////////////////////
4+ #
5+ # line25.sh
6+ # A shell script that modifies all .otf and .ttf fonts to
7+ # 25% UPM line spacing
8+ # Copyright 2016 Christopher Simpkins
9+ # MIT License
10+ #
11+ # ////////////////////////////////////////////////////////////
12+
13+ # Check for font-line application
14+ which font-line
15+
16+ # if not present install it
17+ if [[ $? -ne 0 ]]; then
18+ pip install font-line
19+ fi
20+
21+ # modify all .ttf and .otf files with 25% UPM line spacing
22+ font-line percent 25 * .ttf * .otf
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # ////////////////////////////////////////////////////////////
4+ #
5+ # line30.sh
6+ # A shell script that modifies all .otf and .ttf fonts to
7+ # 30% UPM line spacing
8+ # Copyright 2016 Christopher Simpkins
9+ # MIT License
10+ #
11+ # ////////////////////////////////////////////////////////////
12+
13+ # Check for font-line application
14+ which font-line
15+
16+ # if not present install it
17+ if [[ $? -ne 0 ]]; then
18+ pip install font-line
19+ fi
20+
21+ # modify all .ttf and .otf files with 30% UPM line spacing
22+ font-line percent 30 * .ttf * .otf
You can’t perform that action at this time.
0 commit comments