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.
Icons
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.
Basic Icon
You can specify an icon name. Tab complete is available for icon names.
1
New-UDIcon -Icon rocket -Size 5x
2
New-UDIcon -Icon bandcamp -Size 5x
3
New-UDIcon -Icon palette -Size 5x
4
New-UDIcon -Icon apple -Size 5x
Copied!
Size
Many icon sizes are available. You can create larger icons by specifying sizes from 2x to 10x.
1
2..10 | ForEach-Object {
2
New-UDIcon -Icon sign_language -Size "$($_)x"
3
}
Copied!
Icon Sizes
Colors
You can use standard HTML and color names for colors.
1
New-UDIcon -Icon socks -Size 5x -Color red
Copied!
Spinning Icons
You can create spinning icons. These can be useful as loading icons.