## custom prompt ## Aaron Bockelie function prompt # Change prompt so it will show the logged in perforce depot. I apologize in advance if I just hammered your whizbang prompt function. # you can comment this out or just remove it if you don't like it. (or integrate it into your own custom prompt) { if ($env:p4server -eq $null) { $env:computername + "\" + (get-location) + "> " } else { $env:p4server + ":" + $env:perforceport + "-" + (get-location) + "> " } }