-
Notifications
You must be signed in to change notification settings - Fork 315
Closed
Milestone
Description
For the macOS install script should it refer to the /font directory as a parent?
So instead of ./font
#!/bin/bash
# remove all fonts from ~/library/fonts that start with "monaspace"
rm -rf ~/library/fonts/monaspace*
# copy all fonts from ./otf to ~/library/fonts
cp ./fonts/otf/* ~/library/fonts
# copy variable fonts from ./variable to ~/library/fonts
cp ./fonts/variable/* ~/library/fontsWe have ../font
#!/bin/bash
# remove all fonts from ~/library/fonts that start with "monaspace"
rm -rf ~/library/fonts/monaspace*
# copy all fonts from ./otf to ~/library/fonts
cp ../fonts/otf/* ~/library/fonts
# copy variable fonts from ./variable to ~/library/fonts
cp ../fonts/variable/* ~/library/fontsHappy to contribute to this issue.
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done