PowerShell 美化

  • 下载安装 Chocolatey

  • 安装 PsGet,在 PowerShell 中输入:

    (new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex
    
  • 在 PowerShell 中,用PsGet安装posh-gitoh-my-posh

    Install-Module posh-git
    Install-Module oh-my-posh
    
  • 设置oh-my-posh主题

    Set-Theme paradox
  • 创建 PowerShell 配置文件

    Test-path $profile
    //如显示false,使用以下命令手动创建
    New-item –type file –force $profile
    //如显示true,使用以下命令打开配置文件编辑
    Notepad $profile
    
    //在配置文件中加入 oh-my-posh 主题设置
    Set-Theme Honukai
    
    //保存关闭,重启PowerShell
    
  • 效果图

  • 所有软件链接

Chocolatey
PsGet
Oh-My-Posh
Posh-Git

PS: 想省事懒得捣鼓, 直接安装Cmder http://cmder.net/

你可能感兴趣的:(windows,powershell)