Project

ConsoleMonster

ConsoleMonster is a PowerShell module to build cool GUI applications using Spectre Console and Terminal GUI.

Stars25
Forks3
Open issues0
PowerShell Gallery downloads2829
Releasev0.0.4
Language: PowerShell Updated: 2026-02-14T21:44:11.0000000+00:00

Curated Examples

Add Spectre rules

Use ConsoleMonster to add colored rule separators to console output.

This pattern is useful when an operator script needs readable sections.

It is adapted from Examples/Example-SpectreRules.ps1.

Example

Import-Module ConsoleMonster

New-SpectreRule -Text 'Inventory', 'centered' -Color Yellow, Green -RuleColor Blue
New-SpectreRule -Text 'Remediation', 'left aligned' -Color Yellow, Green -RuleColor Blue -Align Left

What this demonstrates

  • adding visual separators to console output
  • using text and rule colors deliberately
  • keeping a console script easier to scan

Source