diff --git a/src/powershell-extended/ENHANCEMENTS.md b/src/powershell-extended/ENHANCEMENTS.md index ef83542..8f28b99 100644 --- a/src/powershell-extended/ENHANCEMENTS.md +++ b/src/powershell-extended/ENHANCEMENTS.md @@ -84,42 +84,7 @@ described below. 4. **Select Nerd Font**: - You will see a selection menu like this: - ```console - 🤓 Nerd Fonts Installation - ========================================================================================= - - 1: 0xProto 28: Go-Mono 55: Monaspice - 2: 3270 29: Gohu 56: Monofur - 3: Agave 30: Hack 57: Monoid - 4: AnonymicePro 31: Hasklig 58: Mononoki - 5: AnonymousPro 32: Hasklug 59: MPlus - 6: Arimo 33: HeavyData 60: NerdFontsSymbolsOnly - 7: AurulentSansMono 34: Hermit 61: Noto - 8: BigBlueTerminal 35: Hurmit 62: OpenDyslexic - 9: BitstreamVeraSansMono 36: iA-Writer 63: Overpass - 10: Cascadia 37: IBMPlexMono 64: ProFont - 11: CascadiaCode 38: iMWriting 65: ProggyClean - 12: CascadiaMono 39: Inconsolata 66: Recursive - 13: CaskaydiaCove 40: InconsolataGo 67: RobotoMono - 14: CaskaydiaMono 41: InconsolataLGC 68: SauceCodePro - 15: CodeNewRoman 42: IntelOneMono 69: ShareTechMono - 16: ComicShannsMono 43: IntoneMono 70: SourceCodePro - 17: CommitMono 44: Iosevka 71: SpaceMono - 18: Cousine 45: IosevkaTerm 72: SureTechMono - 19: D2Coding 46: IosevkaTermSlab 73: Terminess - 20: DaddyTimeMono 47: JetBrainsMono 74: Terminus - 21: DejaVuSansMono 48: Lekton 75: Tinos - 22: DroidSansMono 49: LiberationMono 76: Ubuntu - 23: EnvyCodeR 50: Lilex 77: UbuntuMono - 24: FantasqueSansMono 51: LiterationMono 78: UbuntuSans - 25: FiraCode 52: MartianMono 79: VictorMono - 26: FiraMono 53: Meslo 80: ZedMono - 27: GeistMono 54: Monaspace - - Enter 'q' to quit. - - Select a number: 53 - ``` + ![PowerShell Nerd Fonts Installer](images/nerd-fonts-installer.gif) - Enter a number corresponding to the list of Nerd Font names. To choose your favorite, you may want to visit [nerdfonts.com](https://www.nerdfonts.com/) for a preview. Depending on your PowerShell version diff --git a/src/powershell-extended/Invoke-NerdFontInstaller.ps1 b/src/powershell-extended/Invoke-NerdFontInstaller.ps1 index 001749e..97c54f5 100755 --- a/src/powershell-extended/Invoke-NerdFontInstaller.ps1 +++ b/src/powershell-extended/Invoke-NerdFontInstaller.ps1 @@ -2,7 +2,7 @@ <#PSScriptInfo -.VERSION 1.0.1 +.VERSION 1.0.2 .GUID a3238c59-8a0e-4c11-a334-f071772d1255 @@ -25,8 +25,8 @@ .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES - Version 1.0.1 (2024-08-28) - - Initial release. + Version 1.0.2 (2024-08-29) + - Fix typo in the script description #> <# @@ -68,7 +68,7 @@ & ([scriptblock]::Create((iwr 'https://bit.ly/ps-nerdfont-installer'))) -Name cascadia-code, cascadia-mono ``` - To get a lest of available Nerd Fonts, use the following command: + To get a list of available Nerd Fonts, use the following command: ```powershell & ([scriptblock]::Create((iwr 'https://bit.ly/ps-nerdfont-installer'))) -List All diff --git a/src/powershell-extended/NOTES.md b/src/powershell-extended/NOTES.md index b0fa6fc..297d28a 100644 --- a/src/powershell-extended/NOTES.md +++ b/src/powershell-extended/NOTES.md @@ -15,7 +15,7 @@ You can [change the theme](ENHANCEMENTS.md#3-change-your-oh-my-posh-powershell-p > **Note**: Most other themes require installing a [Nerd Font](https://ohmyposh.dev/docs/installation/fonts) on your > **host system** (not the Dev Container) and adjusting your font settings in VSCode. The Windows Terminal default font -> [_Cascadia Mono_](https://github.com/microsoft/cascadia-code/releases/tag/v2404.23) now has a native Nerd Font variant, +> [_Cascadia Code_](https://github.com/microsoft/cascadia-code/releases/tag/v2404.23) now has a native Nerd Font variant, > which can [easily be installed](ENHANCEMENTS.md#1-install-nerd-font) and looks great in VSCode as well. ### 2. Command Line Completion / IntelliSense diff --git a/src/powershell-extended/images/nerd-fonts-installer.gif b/src/powershell-extended/images/nerd-fonts-installer.gif new file mode 100644 index 0000000..db849d6 Binary files /dev/null and b/src/powershell-extended/images/nerd-fonts-installer.gif differ