powershell怎么以管理员身份运行使⽤oh-my-posh美化powershell
2020/03/22, powershell, oh-my-posh
摘要:使⽤oh-my-posh美化powershell
美化教程参考少数派⽂章
美化效果图,此图是在FluentTerminal下的效果:
准备⼯作
电脑中需要安装好git、⽀持Powerline的字体
git可以去官⽹下载,如果觉得速度慢,可以考虑在腾讯软件中搜索下载(速度很快,⽽且使⽤普通下载的⽅式安装包没有夹带私货)powerline字体需要去github下载,
⽽我⾃⼰更喜欢使⽤更纱⿊体,
修改字体
打开powershell,对着标题栏右击,选择属性
安装主题
执⾏以下命令安装posh-git和oh-my-posh两个模块,遇到提⽰选y确认即可,如果下载速度慢,考虑使⽤⼩⽕箭加速
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
新增配置⽂件
# 如果之前没有配置⽂件,就新建⼀个 PowerShell 配置⽂件
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
⽤记事本打开配置⽂件
notepad $PROFILE
在其中写⼊以下内容
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox
⾄此,再重新打开powershell时,会⾃动加载Paradox主题,⼀共是
Agnoster、Avit、Darkblood、Fish、Honukai、
Paradox、PowerLine、robbyrussell、Sorin、tehrob这些主题,⾃⼰挑选
使⽤FluentTerminal
去github中下载安装,使⽤ps运⾏Install.ps1安装即可
问题解决
1.如果提⽰git command could not be found要么是git没装,要么是装好没重启下,因为git命令加⼊到环境变量后,重启才⽣效
2.提⽰"⽆法加载⽂件...因为在此系统上禁⽌运⾏脚本",以管理员⽅式运⾏powershell,输⼊set-executionpolicy remotesigned命令,回车选y即可
3.在Visual Studio Code的终端中,主题存在⾏⾼的问题:
在设置中修改终端的渲染⽅式即可,我选择为dom就正常了,如有问题,可以切换其他渲染⽅式试试

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。