Skip to content

quick start

2CHEVSKII edited this page Jul 10, 2026 · 1 revision

Quick Start

Install and import the module:

Install-Module -Name gly -Repository PSGallery -Scope CurrentUser
Import-Module gly

Run 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.

Renderer Commands

Use Show-Gly for an explicit formatted object display:

Show-Gly -Path .
Get-ChildItem . | Show-Gly

Use Show-GlyTree for a simple tree layout:

Show-GlyTree -Path . -Depth 2

Use Show-GlyGrid for a compact grid:

Show-GlyGrid -Path .

Aliases

gly .
glytr . -Depth 2
glygr .

Disable Visuals

Disable-Gly

This disables glyphs and colors through configuration. It does not unload PowerShell format data from the current session.

Re-enable:

Enable-Gly

Clone this wiki locally