-
Notifications
You must be signed in to change notification settings - Fork 0
quick start
2CHEVSKII edited this page Jul 10, 2026
·
1 revision
Install and import the module:
Install-Module -Name gly -Repository PSGallery -Scope CurrentUser
Import-Module glyRun standard PowerShell commands:
Get-ChildItem .
Get-Item .The standard table view keeps Mode, LastWriteTime, Length, and Name. gly changes only Name by adding a glyph and optional color.
Use Show-Gly for an explicit formatted object display:
Show-Gly -Path .
Get-ChildItem . | Show-GlyUse Show-GlyTree for a simple tree layout:
Show-GlyTree -Path . -Depth 2Use Show-GlyGrid for a compact grid:
Show-GlyGrid -Path .gly .
glytr . -Depth 2
glygr .Disable-GlyThis disables glyphs and colors through configuration. It does not unload PowerShell format data from the current session.
Re-enable:
Enable-Gly