mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-12 18:03:14 -06:00
20 lines
460 B
Text
20 lines
460 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
PATCHED_FONTS=./patched
|
||
|
INSTALL_DIR=~/.local/share/fonts/MonoLisa
|
||
|
|
||
|
for font_dir in $PATCHED_FONTS/*; do
|
||
|
patched_dir="${font_dir##*/}"
|
||
|
echo ">>> $patched_dir"
|
||
|
|
||
|
if [[ -d "${INSTALL_DIR}/${patched_dir}" ]]; then
|
||
|
echo "deleting existing version"
|
||
|
rm -rf $INSTALL_DIR/$patched_dir
|
||
|
fi
|
||
|
|
||
|
dest=$INSTALL_DIR/$patched_dir
|
||
|
mkdir $dest && cp -v $font_dir/* $dest
|
||
|
done
|
||
|
|
||
|
echo "Don't forget to run 'fc-cache -f -v'"
|