Windows Terminal安装及配置

简介

船新版本

一、安装

Microsoft Store中搜索安装即可,初始状态如下:

Windows Terminal安装及配置

二、配置

1.了解配置文件

Windows Terminal通过settings.json来自定义配置

  • globals 「全局配置」
  • profiles 「各个终端信息」
  • schemes 「配置方案」
  • keybindings 「按键绑定」
  • etc.

2.修改profiles

  • wt -> Windows Terminal
  • 添加其他终端大同小异
  • 更多配置信息参考官网

比如;添加git-bash到wt中,添加如下一份profile放到profiles的list下面「目录需要改为自己的」

{
"guid" : "{6c68609c-0e39-4fc8-bfa5-dec9c9ab0cd3}",
"name" : "Git-Bash",
"commandline" : "D:\\Files\\git\\Git\\bin\\bash.exe",
"icon" : "D:\\Files\\windows_terminal\\icon\\git-bash.jpg",
"startingDirectory" : "%USERPROFILE%",
"hidden": false
}

比如:添加云服务器到wt中

{
"guid": "{c2b7c779-0f4f-4476-bfa5-313b42c9851a}",
"hidden": false,
"name": "ecs",
"commandline": "ssh -i C:\\Users\\[xxx]\\.ssh\\[xxx].pem root@192.168.0.1 -p 22"
}

3.修改schemes

微软主题

网上主题

配置方案

选择好主题UltraViolent,复制到schemes下面,然后在profiles中的default中添加,重新打开wt看下效果

"colorScheme": "UltraViolent"

三、进一步配置

实际上就是添加一些常用的配置到JSON中

四、添加WT到右键菜单

新建一个reg文件,编辑好后,右键运行

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\wt]
@="Windows Terminal Here"
"Icon"="%USERPROFILE%\\AppData\\Local\\Windows_Terminal_Icon\\windows_terminal.ico"

[HKEY_CLASSES_ROOT\Directory\Background\shell\wt\command]
@="C:\\Users\\[USERNAME]\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe"

❗注意:

  • 下面的[USERNAME]替换成自己的用户名
  • 目录路径使用双反斜线 \\
  • Icon目录可以自定义位置,不要误删就行 Windows Terminal Icon下载地址

❓报错:

Windows Terminal安装及配置

解决错误:shell\wt\command下面的@是不能使用环境变量USERPROFILE的,改成绝对路径名就OK了「但是Icon中是可以使用环境变量的」

五、一些问题

1.亚克力没有效果

系统设置 -> Color -> Open Transparency effects

Windows Terminal安装及配置

上一篇:Cannot read property ‘length‘ of null while opening vscode terminal


下一篇:pycharm中的terminal和Windows命令提示符有什么区别?二者用pip安装的包是不是位于相同位置?