Skip to content

Commit 8ea0689

Browse files
committed
Update installer scripts to handle frozen fonts
1 parent d7cc8e5 commit 8ea0689

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

util/install_linux.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ cp ./fonts/otf/* ~/.local/share/fonts/Monaspace/
1414
# copy variable fonts from ./variable to ~/.local/share/fonts
1515
cp ./fonts/variable/* ~/.local/share/fonts/Monaspace/
1616

17+
# copy frozen fonts from ./frozen to ~/.local/share/fonts
18+
cp ./fonts/frozen/* ~/.local/share/fonts/Monaspace/
19+
1720
# Build font information caches
1821
fc-cache -f

util/install_macos.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
# remove all fonts from ~/Library/Fonts that start with "Monaspace"
44
rm -rf ~/Library/Fonts/Monaspace*
55

6-
# copy all fonts from ./otf to ~/Library/Fonts
6+
# copy static fonts from ./otf to ~/Library/Fonts
77
cp ./fonts/otf/* ~/Library/Fonts
88

99
# copy variable fonts from ./variable to ~/Library/Fonts
10-
cp ./fonts/variable/* ~/Library/Fonts
10+
cp ./fonts/variable/* ~/Library/Fonts
11+
12+
# copy frozen fonts from ./frozen to ~/Library/Fonts
13+
cp ./fonts/frozen/* ~/Library/Fonts

0 commit comments

Comments
 (0)