Windows美化Terminal

折腾Windows Terminal笔记

效果图

软件安装

  • win10需要在微软商店安装
  • win11自带

安装插件

  • 使用管理员权限打开windows terminal
1
2
Install-Module posh-git
Install-Module oh-my-posh
  • 设置主题
1
Set-PoshPrompt -Theme blueish

安装字体

  • 在GitHub上下载Meslo字体,链接:Meslo-Font

  • 解压后copy到C:/Windows/Fonts目录下

编辑配置文件

  • 编辑配置文件是主题设置永久生效,我这里用的是sublime编辑。
1
2
3
4
.\sublime_text.exe $PROFILE
+ Import-Module posh-git
+ Import-Module oh-my-posh
+ Set-PoshPrompt -Theme blueish
  • 编辑完后保存文件

自定义配置

  • 修改terminal配置文件,我是选择在defaults中添加配置,这样可以全局生效。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"defaults":
{
+ "backgroundImage" : "xxxxxx", // 背景图片地址
+ "backgroundImageOpacity" : 0.8, //透明度
+ "backgroundImageStretchMode": "uniformToFill", // 图片伸缩模式:设置伸缩模式成按比例放大
+ "backgroundImageOpacity" : 0.2, //透明度
+ "acrylicOpacity" : 0.5, // 定义亚克力效果的透明度
+ "useAcrylic": true, // 毛玻璃效果
+ "background" : "#242425", // 背景颜色
+ "fontFace":"MesloLGM NF", // 字体
+ "fontSize": 10, // 字体大小
+ "padding": "5, 5, 20, 25",
+ "colorScheme": "Abernathy" // 颜色方案
}