網(wǎng)上一大堆美化教程产阱,啰里啰唆,還講不清块仆,并且一堆錯誤
oh-my-posh2(該方法已廢止构蹬,請不要使用)
第一步安裝模塊
powershell 管理員身份運行,并執(zhí)行以下悔据。
##允許執(zhí)行腳本
set-executionpolicy remotesigned
Install-module PSReadline
Install-Module posh-git
Install-Module oh-my-posh
Install-Module DirColors
第二步 導入模塊
Import-Module PSReadline
Import-Module DirColors
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme powerLine
但此時庄敛,只應用到當前,下次打開還是老樣子科汗,這樣藻烤,我們就給加個配置文件
第三步 配置
首先記事本打開
notepad $profile
接著輸入如下內(nèi)容并保存
Import-Module PSReadline
Import-Module DirColors
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme powerLine
第四步 安裝個好看的字體
安裝字體是必須的,否則可能出現(xiàn)亂碼头滔。這里既然用的Theme powerLine怖亭,那我們就下powerLine字體
powerline/fonts: Patched fonts for Powerline users. (github.com)
下載以后,找到DejaVu Sans Mono for Powerline.ttf安裝
并在windows terminal設置里設置好該字體
第五步 給windows terminal選個合適的配色
在Terminal的配置json文件中插入
"colorScheme": "One Half Dark",
或者直接在面板里選擇
我的成品
oh-my-posh3(新教程)
windows 10還沒有自帶terminal坤检,可以到這里下載
Releases · microsoft/terminal (github.com)
win11已經(jīng)自己帶了
以下是新教程兴猩,只針對
oh-my-posh3
直接在微軟商店搜索oh my posh下載
或者,
winget install JanDeDobbeleer.OhMyPosh -s winget
This installs a couple of things:
- oh-my-posh.exe - Windows executable
- themes - The latest Oh My Posh themes
如果以上方法都不能安裝早歇,請到github下載
Releases · JanDeDobbeleer/oh-my-posh (github.com)
然后terminal 重啟
先下載一個字體
https://www.nerdfonts.com/font-downloads
個人推薦
和之前一樣倾芝,在terminal打開
notepad $profile
輸入
oh-my-posh init pwsh | Invoke-Expression
保存
但是,這個官方推薦的默認主題非常慢缺前,加載還總出錯蛀醉,我推薦選其他的
自己到官方看看哪個符合心意?
https://ohmyposh.dev/docs/themes
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/unicorn.omp.json" | Invoke-Expression
比之前簡單多了
注意衅码,若出現(xiàn)powershell無權(quán)限執(zhí)行腳本的問題拯刁。可以如下處理
1.查看當前權(quán)限:
Get-ExecutionPolicy
2.設定權(quán)限(必須右鍵管理員權(quán)限打開powershell)
Set-ExecutionPolicy RemoteSigned
PowerShell有4種腳本權(quán)限:
Restricted: 默認的設置逝段,不允許任何script運行垛玻。
AllSigned: 只能運行經(jīng)過數(shù)字證書簽名的script割捅。
RemoteSigned: 運行本地的script不需要數(shù)字簽名,但是運行從網(wǎng)絡上下載的script必須要有數(shù)字簽名帚桩。
Unrestricted: 允許所有的script運行亿驾。