Windows10下的powershell美化教程

Windows10下的美化教程
原文地址:

美化完成后

Windows10下的powershell美化教程

开始安装

  • 以管理员方式打开powershell
  • 安装posh-git依赖
    Install-Module posh-git -Scope CurrentUser
  • 过程中有提示,一路Y(如果没有权限执行脚本,需要先执行 Set-ExecutionPolicy Bypass)
    Windows10下的powershell美化教程
  • 安装oh-my-posh
    Install-Module oh-my-posh -Scope CurrentUser
  • 过程中有提示 ,一路Y
    Windows10下的powershell美化教程
  • 安装完成

开始美化

  • 启用模组并设置主题
    Import-Module oh-my-posh
  • 我的机子报错了:
    Windows10下的powershell美化教程
  • 不慌,慌也没用。google下。得到解决方案:
    set-executionpolicy remotesigned
    Windows10下的powershell美化教程
  • 现在,就完成了oh-my-zsh的安装与使用。

其他设置

  • 每次打开 PowerShell 都能够启用这个模组
    • 调用命令:$profile,获得当前文件位置
    • 去这个目录修改或者新建这个文件
    • 写入启动模组的命令 Import-Module oh-my-posh
    • 如图:
      Windows10下的powershell美化教程
    • 内置了许多主题;可以在上面的文件中加一行:
      Set-Theme Honukai默认使用Honukai主题;

Windows10下的powershell美化教程

  • 最终效果:
    Windows10下的powershell美化教程

以为这就完了?并没有。

ps:由于对cmd和powershell的字体更改成支持powerline字体的操作比较困难。所以在powershell基础上的美化到此为止。下面为了搭建完整的控制台,我采用第三方的工具,在支持powerline字体的情况下启动powershell。完成美化。同时,这个工具比自带的cmd和powershell在生产环境中强大很多很多。

准备工具:

开始

  1. 下载字体和工具。安装喜欢的字体(双击字体文件),安装工具,一路next。
  2. 设置工具为powershell启动:Windows10下的powershell美化教程
  3. 设置字体:
    Windows10下的powershell美化教程
  4. 完毕
  5. ps:ConEmu可进行标签字体设置、背景设置、功能设置等。百度得到相关设置教程。

最后

ConEmu + Wox不要太爽

上一篇:美化terminal时碰到的问题- Set-Theme


下一篇:Mac、Linux 安装 zsh & oh-my-zsh