Universal Dashboard is now a part of PowerShell Universal. This documentation is for reference to the v2 version of Universal Dashboard and is no longer maintained. PowerShell Universal Documentation can be found here.
Universal Dashboard uses the Font Awesome library to provide icons throughout the product. Many controls accept icons and you can create stand alone icons with New-UDIcon
.
You can specify an icon name. Tab complete is available for icon names.
New-UDIcon -Icon rocket -Size 5xNew-UDIcon -Icon bandcamp -Size 5xNew-UDIcon -Icon palette -Size 5xNew-UDIcon -Icon apple -Size 5x
Many icon sizes are available. You can create larger icons by specifying sizes from 2x to 10x.
2..10 | ForEach-Object {New-UDIcon -Icon sign_language -Size "$($_)x"}
You can use standard HTML and color names for colors.
New-UDIcon -Icon socks -Size 5x -Color red
You can create spinning icons. These can be useful as loading icons.
New-UDIcon -Spin -Icon linux -Size 5x