This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run this with an argument to install a nerdfont on windows | |
# run this with no arguments to install all fonts | |
# font name, as seen on https://www.nerdfonts.com/font-downloads | |
param( | |
[Parameter(Mandatory=$False, Position=0, ValueFromPipeline=$false)] | |
[System.String] | |
$fontTarget="*" | |
) | |
# build temp directory for git clone |