Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/functions/public/Get-NerdFont.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
Get-NerdFonts -Name '*Code'

Get the NerdFont with the name ending with 'Code'.

.LINK
https://psmodule.io/NerdFonts/Functions/Get-NerdFont

.NOTES
More information about the NerdFonts can be found at:
[NerdFonts](https://www.nerdfonts.com/) | [GitHub](https://github.com/ryanoasis/nerd-fonts)
#>
[Alias('Get-NerdFonts')]
[OutputType([System.Object[]])]
Expand Down
10 changes: 9 additions & 1 deletion src/functions/public/Install-NerdFont.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#Requires -Modules @{ ModuleName = 'Fonts'; RequiredVersion = '1.1.19' }
#Requires -Modules @{ ModuleName = 'Fonts'; RequiredVersion = '1.1.21' }
#Requires -Modules @{ ModuleName = 'Admin'; RequiredVersion = '1.1.6' }

function Install-NerdFont {
<#
Expand Down Expand Up @@ -27,6 +28,13 @@ function Install-NerdFont {
Install-NerdFont -All

Installs all Nerd Fonts to the current user.

.LINK
https://psmodule.io/NerdFonts/Functions/Install-NerdFont

.NOTES
More information about the NerdFonts can be found at:
[NerdFonts](https://www.nerdfonts.com/) | [GitHub](https://github.com/ryanoasis/nerd-fonts)
#>
[CmdletBinding(
DefaultParameterSetName = 'ByName',
Expand Down
3 changes: 0 additions & 3 deletions src/manifest.psd1

This file was deleted.

Loading