Windows Terminal安装并美化
介绍
Windows Teminal是一款新式、快速、高效、强大的终端应用程序,适用于命令行工具、命令提示符、PowerShell、WSL(Linux子系统)等等的Shell用户,主要功能包括多选项卡、窗格、Unicode/UTF-8字符支持、GPU 加速文本渲染引擎,以及自定义主题、样式和配置等等。
Github地址:https://github.com/microsoft/terminal
官网下载地址:https://www.microsoft.com/zh-cn/p/windows-terminal/9n0dx20hk701?activetab=pivot:overviewtab
安装Windows Terminal
打开Microsoft Store
,搜索Windows Teminal
并安装。
启动:
安装最新版本PowerShell
Widows 10 默认是 Windows PowerShell 是 5.X 版本,在 Win10 V1903 以上版本后,打开 PowerShell 时,会提示 “尝试新的跨平台 PowerShell https://aka.ms/pscore6” ,打开提示网址。
下载地址:https://github.com/PowerShell/PowerShell/releases
选择PowerShell-<version>-win-<os-arch>.msi
格式的安装包:
下载后,双击安装程序并按照提示进行操作。
安装程序在 Windows“开始”菜单中创建一个快捷方式。
- 默认情况下,包安装位置为
$env:ProgramFiles\PowerShell\
- 可以通过“开始”菜单或
$env:ProgramFiles\PowerShell\\pwsh.exe
启动 PowerShell
PowerShell 7 安装到新目录,并与 Windows PowerShell 5.1 并行运行。 对于 PowerShell Core 6.x,PowerShell 7 是删除 PowerShell Core 6.x 的就地升级。
- PowerShell 7 安装到
$env:ProgramFiles\PowerShell\7
$env:ProgramFiles\PowerShell\7
文件夹已添加到$env:PATH
$env:ProgramFiles\PowerShell\6
文件夹已删除
如果需要与 PowerShell 7 并行运行 PowerShell 6,请使用 ZIP 安装方法重新安装 PowerShell 6。
查看版本,在命令行窗口中输入命令
1 | $PSVersionTable.PSVersion |
美化Windows Terminal
参考:https://docs.microsoft.com/zh-cn/windows/terminal/
默认会话为Power Shell 5.x版本,将之修改为7
"defaultProfile":
的值改为"source": "Windows.Terminal.PowershellCore"
的guid即可,例如它的guid为"{574e775e-4f2a-5b96-ac1e-a2962a402336}"
。
1 | "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", |
schemes配置
1 | { |
毛玻璃主题
若喜欢毛玻璃主题,可以在"profiles"
内加入以下两个参数:
- useAcrylic:如果设置为
true
,窗口将使用acrylic
背景。 设置为false
时,窗口将为普通的、不带纹理的背景。默认值为false
。 - acrylicOpacity:将
useAcrylic
设置为true
时,这会设置该配置文件的窗口透明度。 接受的浮点值为0-1
。默认值为0.5
。
效果如下:
安装oh-my-posh
Github地址:https://github.com/JanDeDobbeleer/oh-my-posh
安装 posh-git 和 oh-my-posh
1 | Install-Module posh-git -Scope CurrentUser |
设置 Powershell 的 profile
1 | if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } |
粘贴以下内容进 profile 文件
1 | Import-Module posh-git |
主题颜色美化
安装colortool
1 | scoop install colortool |
查看颜色方案
1 | colortool -s |
设置颜色:
1 | colortool OneHalfDark.itermcolors |
Power Shell 7美化
Power Shell 7的配置:
1 | { |
显示效果如下:
ubuntu美化
Ubuntu的配置:
1 | { |
修改命令提示符,修改root用户的~/.bashrc
文件:
1 | export PS1='\[\e[31;1m\][\u\[\e[37;1m\]@\[\e[34;1m\]\H \W]\[\e[35;1m\]\$ \[\e[0m\]' |
新建/etc/profile.d/ps1.sh
1 | export PS1='\[\e[36;1m\][\u\[\e[33;1m\]@\[\e[35;1m\]\H \W]\[\e[34;1m\]\$ \[\e[0m\]' |
新建/etc/profile.d/alias.sh
1 | alias cp='cp -i' |
显示效果如下: