mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
22 lines
414 B
PowerShell
22 lines
414 B
PowerShell
pushd c:\tools
|
|
|
|
$a = "FiraCode","ComicShannsMono","Mononoki"
|
|
|
|
foreach($i in $a){
|
|
curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*$i.zip" | cut -d : -f 2,3 | tr -d """" | wget -qi -
|
|
}
|
|
|
|
|
|
$files = Get-ChildItem .\*.zip
|
|
mkdir Fonts
|
|
foreach($file in $files){
|
|
unzip -o $file -d .\Fonts
|
|
}
|
|
|
|
cp Fonts\*.ttf c:\windows\fonts
|
|
cp Fonts\*.otf c:\windows\fonts
|
|
|
|
popd
|
|
|
|
|