mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-12 18:03:14 -06:00
16 lines
335 B
Text
16 lines
335 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
REPO_URL=git@github.com:ryanoasis/nerd-fonts.git
|
||
|
|
||
|
rm -f nerd-fonts
|
||
|
|
||
|
git clone --filter=blob:none --no-checkout --depth 1 --sparse $REPO_URL
|
||
|
cd nerd-fonts
|
||
|
git sparse-checkout add src/glyphs
|
||
|
git checkout
|
||
|
|
||
|
cp font-patcher ../font-patcher
|
||
|
cp src/glyphs/** ../src/glyphs -r
|
||
|
|
||
|
echo "don't forget to commit your changes!"
|