├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── publish.yaml │ └── push.yaml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Terminal-Icons ├── Data │ ├── colorThemes │ │ ├── devblackops.psd1 │ │ ├── devblackops_light.psd1 │ │ └── dracula.psd1 │ ├── glyphs.ps1 │ └── iconThemes │ │ └── devblackops.psd1 ├── Private │ ├── Add-Theme.ps1 │ ├── ConvertFrom-ColorEscapeSequence.ps1 │ ├── ConvertFrom-RGBColor.ps1 │ ├── ConvertTo-ColorSequence.ps1 │ ├── Get-ThemeStoragePath.ps1 │ ├── Import-ColorTheme.ps1 │ ├── Import-IconTheme.ps1 │ ├── Import-Preferences.ps1 │ ├── New-EmptyColorTheme.ps1 │ ├── Resolve-Icon.ps1 │ ├── Save-Preferences.ps1 │ ├── Save-Theme.ps1 │ └── Set-Theme.ps1 ├── Public │ ├── Add-TerminalIconsColorTheme.ps1 │ ├── Add-TerminalIconsIconTheme.ps1 │ ├── Format-TerminalIcons.ps1 │ ├── Get-TerminalIconsColorTheme.ps1 │ ├── Get-TerminalIconsGlyphs.ps1 │ ├── Get-TerminalIconsIconTheme.ps1 │ ├── Get-TerminalIconsTheme.ps1 │ ├── Invoke-TerminalIconsThemeMigration.ps1 │ ├── Remove-TerminalIconsTheme.ps1 │ ├── Set-TerminalIconsIcon.ps1 │ ├── Set-TerminalIconsTheme.ps1 │ └── Show-TerminalIconsTheme.ps1 ├── Terminal-Icons.format.ps1xml ├── Terminal-Icons.psd1 └── Terminal-Icons.psm1 ├── docs └── en-US │ ├── Add-TerminalIconsColorTheme.md │ ├── Add-TerminalIconsIconTheme.md │ ├── Format-TerminalIcons.md │ ├── Get-TerminalIconsColorTheme.md │ ├── Get-TerminalIconsGlyphs.md │ ├── Get-TerminalIconsIconTheme.md │ ├── Get-TerminalIconsTheme.md │ ├── Invoke-TerminalIconsThemeMigration.md │ ├── Remove-TerminalIconsTheme.md │ ├── Set-TerminalIconsColorTheme.md │ ├── Set-TerminalIconsIcon.md │ ├── Set-TerminalIconsIconTheme.md │ ├── Set-TerminalIconsTheme.md │ └── Show-TerminalIconsTheme.md ├── media ├── icon_256.png ├── icon_512.png ├── screenshot.png └── screenshot1.PNG ├── psakeFile.ps1 ├── requirements.psd1 └── tests ├── Help.tests.ps1 ├── Manifest.tests.ps1 ├── Meta.tests.ps1 ├── MetaFixers.psm1 ├── MyAwesomeColorTheme.psd1 ├── MyAwesomeIconTheme.psd1 ├── ScriptAnalyzerSettings.psd1 ├── TestItems ├── .gitattributes ├── .gitconfig ├── LICENSE ├── README.md ├── asdf.md ├── asdf.png ├── asdf.txt ├── bar.jpg ├── foo.go └── for.gif └── unit ├── Add-TerminalIconsColorTheme.tests.ps1 ├── Add-TerminalIconsIconTheme.tests.ps1 └── Format-TerminalIcons.tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/README.md -------------------------------------------------------------------------------- /Terminal-Icons/Data/colorThemes/devblackops.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Data/colorThemes/devblackops.psd1 -------------------------------------------------------------------------------- /Terminal-Icons/Data/colorThemes/devblackops_light.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Data/colorThemes/devblackops_light.psd1 -------------------------------------------------------------------------------- /Terminal-Icons/Data/colorThemes/dracula.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Data/colorThemes/dracula.psd1 -------------------------------------------------------------------------------- /Terminal-Icons/Data/glyphs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Data/glyphs.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Data/iconThemes/devblackops.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Data/iconThemes/devblackops.psd1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Add-Theme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Add-Theme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/ConvertFrom-ColorEscapeSequence.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/ConvertFrom-ColorEscapeSequence.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/ConvertFrom-RGBColor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/ConvertFrom-RGBColor.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/ConvertTo-ColorSequence.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/ConvertTo-ColorSequence.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Get-ThemeStoragePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Get-ThemeStoragePath.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Import-ColorTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Import-ColorTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Import-IconTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Import-IconTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Import-Preferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Import-Preferences.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/New-EmptyColorTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/New-EmptyColorTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Resolve-Icon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Resolve-Icon.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Save-Preferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Save-Preferences.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Save-Theme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Save-Theme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Private/Set-Theme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Private/Set-Theme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Add-TerminalIconsColorTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Add-TerminalIconsColorTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Add-TerminalIconsIconTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Add-TerminalIconsIconTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Format-TerminalIcons.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Format-TerminalIcons.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Get-TerminalIconsColorTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Get-TerminalIconsColorTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Get-TerminalIconsGlyphs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Get-TerminalIconsGlyphs.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Get-TerminalIconsIconTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Get-TerminalIconsIconTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Get-TerminalIconsTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Get-TerminalIconsTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Invoke-TerminalIconsThemeMigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Invoke-TerminalIconsThemeMigration.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Remove-TerminalIconsTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Remove-TerminalIconsTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Set-TerminalIconsIcon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Set-TerminalIconsIcon.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Set-TerminalIconsTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Set-TerminalIconsTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Public/Show-TerminalIconsTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Public/Show-TerminalIconsTheme.ps1 -------------------------------------------------------------------------------- /Terminal-Icons/Terminal-Icons.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Terminal-Icons.format.ps1xml -------------------------------------------------------------------------------- /Terminal-Icons/Terminal-Icons.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Terminal-Icons.psd1 -------------------------------------------------------------------------------- /Terminal-Icons/Terminal-Icons.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/Terminal-Icons/Terminal-Icons.psm1 -------------------------------------------------------------------------------- /docs/en-US/Add-TerminalIconsColorTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Add-TerminalIconsColorTheme.md -------------------------------------------------------------------------------- /docs/en-US/Add-TerminalIconsIconTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Add-TerminalIconsIconTheme.md -------------------------------------------------------------------------------- /docs/en-US/Format-TerminalIcons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Format-TerminalIcons.md -------------------------------------------------------------------------------- /docs/en-US/Get-TerminalIconsColorTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Get-TerminalIconsColorTheme.md -------------------------------------------------------------------------------- /docs/en-US/Get-TerminalIconsGlyphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Get-TerminalIconsGlyphs.md -------------------------------------------------------------------------------- /docs/en-US/Get-TerminalIconsIconTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Get-TerminalIconsIconTheme.md -------------------------------------------------------------------------------- /docs/en-US/Get-TerminalIconsTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Get-TerminalIconsTheme.md -------------------------------------------------------------------------------- /docs/en-US/Invoke-TerminalIconsThemeMigration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Invoke-TerminalIconsThemeMigration.md -------------------------------------------------------------------------------- /docs/en-US/Remove-TerminalIconsTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Remove-TerminalIconsTheme.md -------------------------------------------------------------------------------- /docs/en-US/Set-TerminalIconsColorTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Set-TerminalIconsColorTheme.md -------------------------------------------------------------------------------- /docs/en-US/Set-TerminalIconsIcon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Set-TerminalIconsIcon.md -------------------------------------------------------------------------------- /docs/en-US/Set-TerminalIconsIconTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Set-TerminalIconsIconTheme.md -------------------------------------------------------------------------------- /docs/en-US/Set-TerminalIconsTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Set-TerminalIconsTheme.md -------------------------------------------------------------------------------- /docs/en-US/Show-TerminalIconsTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/docs/en-US/Show-TerminalIconsTheme.md -------------------------------------------------------------------------------- /media/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/media/icon_256.png -------------------------------------------------------------------------------- /media/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/media/icon_512.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /media/screenshot1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/media/screenshot1.PNG -------------------------------------------------------------------------------- /psakeFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/psakeFile.ps1 -------------------------------------------------------------------------------- /requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/requirements.psd1 -------------------------------------------------------------------------------- /tests/Help.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/Help.tests.ps1 -------------------------------------------------------------------------------- /tests/Manifest.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/Manifest.tests.ps1 -------------------------------------------------------------------------------- /tests/Meta.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/Meta.tests.ps1 -------------------------------------------------------------------------------- /tests/MetaFixers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/MetaFixers.psm1 -------------------------------------------------------------------------------- /tests/MyAwesomeColorTheme.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/MyAwesomeColorTheme.psd1 -------------------------------------------------------------------------------- /tests/MyAwesomeIconTheme.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/MyAwesomeIconTheme.psd1 -------------------------------------------------------------------------------- /tests/ScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/ScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /tests/TestItems/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/.gitconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/asdf.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/asdf.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/asdf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/bar.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/foo.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestItems/for.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/Add-TerminalIconsColorTheme.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/unit/Add-TerminalIconsColorTheme.tests.ps1 -------------------------------------------------------------------------------- /tests/unit/Add-TerminalIconsIconTheme.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/unit/Add-TerminalIconsIconTheme.tests.ps1 -------------------------------------------------------------------------------- /tests/unit/Format-TerminalIcons.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/Terminal-Icons/HEAD/tests/unit/Format-TerminalIcons.tests.ps1 --------------------------------------------------------------------------------