mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-12-31 21:22:38 +02:00
Merge branch 'master' of https://github.com/srijanshetty/nerd-filetype-glyphs-fonts-patcher into srijanshetty-master
This commit is contained in:
commit
105cc9328b
25
install.sh
Executable file
25
install.sh
Executable file
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Set source and target directories
|
||||||
|
powerline_fonts_dir="${PWD}/patched-fonts"
|
||||||
|
|
||||||
|
find_command="find \"$powerline_fonts_dir\" \( -name '*.[o,t]tf' -or -name '*.pcf.gz' \) -type f -print0"
|
||||||
|
|
||||||
|
if [[ $(uname) == 'Darwin' ]]; then
|
||||||
|
# MacOS
|
||||||
|
font_dir="$HOME/Library/Fonts"
|
||||||
|
else
|
||||||
|
# Linux
|
||||||
|
font_dir="$HOME/.fonts"
|
||||||
|
mkdir -p "$font_dir"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Copy all fonts to user fonts directory
|
||||||
|
eval "$find_command" | xargs -0 -I % cp "%" "$font_dir/"
|
||||||
|
|
||||||
|
# Reset font cache on Linux
|
||||||
|
if [[ -n $(which fc-cache) ]]; then
|
||||||
|
fc-cache -f "$font_dir"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "All fonts installed to $font_dir"
|
Loading…
Reference in New Issue
Block a user