美化Windows的終端

本文介紹如何給Windows系統的終端進行打扮,最下面會有效果圖git

1、安裝FluentTerminal

一、下載

前往GitHub找到下面的文件下載
ft.jpggithub

二、安裝

下載後解壓,進入解壓後的目錄,找到Install.ps1文件,右擊使用PowerShell運行,彈出PowerShell後,按照提示,就能夠成功安裝了。web

2、安裝oh my posh

一、設置可執行任意腳本

以管理員身份打開PowerShell執行如下命令,碰到詢問你是否幹嗎幹嗎的,直接輸入Y確認shell

Set-ExecutionPolicy Bypass

二、安裝posh-git

Install-Module posh-git -Scope CurrentUser

三、安裝 oh my posh

碰到詢問你是否幹嗎幹嗎的,直接輸入Y確認bash

Install-Module oh-my-posh -Scope CurrentUser

四、啓用

Import-Module oh-my-posh

3、美化

一、安裝Scoop

環境要求:

一、Windows 版本不低於 Windows 7 oop

二、Windows 中的 PowerShell 版本不低於 PowerShell 3 字體

三、你能 正常、快速 的訪問 GitHub 並下載上面的資源 spa

四、你的 Windows 用戶名爲英文(Windows 用戶環境變量中路徑值不支持中文字符)命令行

執行命令

#保證容許本地腳本的執行
set-executionpolicy remotesigned -scope currentuser
# 安裝
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')

二、安裝字體

# 搜索 nerd fonts,這裏選擇是的FantasqueSansMono這個字體
scoop search FantasqueSansMono-NF
# 添加 nerd fonts 源
scoop bucket add 'nerd-fonts'
# 安裝 nerd fonts
scoop install FantasqueSansMono-NF

三、配置

如下是我舉例的配置,若是須要更換樣式,將Set-Theme後面的配置改爲本身想要的便可,在命令行經過輸入Set-Theme之後空格如下而後按tab鍵選擇你想要的,這都是oh-my-posh自帶的,選擇好了以後將那個名字替換掉下面命令的便可code

# 一、設置 Powershell 的 profile
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 Agnoster

經過上面的操做後,關閉全部已經打開的命令行,從新啓動命令行,就能夠看到效果啦,進入一個git項目,效果圖以下
r.jpg


文章到此結束啦,有啥疑問歡迎在評論區留言

相關文章
相關標籤/搜索