I’m using a custom prompt within PowerShell to save space inside a console and place the current folder’s path into the Title bar.

    function Prompt {
        $host.ui.RawUI.WindowTitle = $(Get-Location)
        Write-Host "PS " -NoNewLine
        Write-Host $([char]9829) -ForegroundColor Red -NoNewLine
        " > "
    }

prompt-demo