How can I launch powershell.exe with the “default” colours from the PowerShell shortcut?

前端 未结 9 1350
野趣味
野趣味 2020-12-13 06:56

I\'m attached to the nice blue colour of the PowerShell window when you launch it from one of the pre-installed shortcuts. However, if you manually launch powershell.exe, yo

9条回答
  •  情歌与酒
    2020-12-13 07:35

    I found it very useful to use concfg tool and scoop to install colors and fonts for Powershell:

    1. Install scoop:

      iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
      
    2. Install concfg:

      scoop install concfg
      
    3. Install Solarized theme:

      concfg import solarized
      

    That's it, thanks to the authors!

提交回复
热议问题