From b752a82fd2d778428075e2130947e951d98befd8 Mon Sep 17 00:00:00 2001 From: LZong Date: Sat, 22 Jun 2019 17:06:34 +0800 Subject: [PATCH] Adding PowerShell script for Windows to one-key-installation. The PowerShell script "install.ps1" from the repository of Powerline Fonts works on Nerd Fonts too with the instruction( https://medium.com/@slmeng/how-to-install-powerline-fonts-in-windows-b2eedecace58 ). --- patched-fonts/install.ps1 | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 patched-fonts/install.ps1 diff --git a/patched-fonts/install.ps1 b/patched-fonts/install.ps1 new file mode 100644 index 000000000..b16cfa957 --- /dev/null +++ b/patched-fonts/install.ps1 @@ -0,0 +1,41 @@ +<# +.SYNOPSIS + Installs the provided fonts. +.DESCRIPTION + Installs all the provided fonts by default. The FontName + parameter can be used to pick a subset of fonts to install. +.EXAMPLE + C:\PS> ./install.ps1 + Installs all the fonts located in the Git repository. +.EXAMPLE + C:\PS> ./install.ps1 furamono-, hack-* + Installs all the FuraMono and Hack fonts. +.EXAMPLE + C:\PS> ./install.ps1 d* -WhatIf + Shows which fonts would be installed without actually installing the fonts. + Remove the "-WhatIf" to install the fonts. +#> +[CmdletBinding(SupportsShouldProcess)] +param( + # Specifies the font name to install. Default value will install all fonts. + [Parameter(Position=0)] + [string[]] + $FontName = '*' +) + +$fontFiles = New-Object 'System.Collections.Generic.List[System.IO.FileInfo]' +foreach ($aFontName in $FontName) { + Get-ChildItem $PSScriptRoot -Filter "${aFontName}.ttf" -Recurse | Foreach-Object {$fontFiles.Add($_)} + Get-ChildItem $PSScriptRoot -Filter "${aFontName}.otf" -Recurse | Foreach-Object {$fontFiles.Add($_)} +} + +$fonts = $null +foreach ($fontFile in $fontFiles) { + if ($PSCmdlet.ShouldProcess($fontFile.Name, "Install Font")) { + if (!$fonts) { + $shellApp = New-Object -ComObject shell.application + $fonts = $shellApp.NameSpace(0x14) + } + $fonts.CopyHere($fontFile.FullName) + } +}