参考
资源
前提条件
- 操作系统 Windows 10 版本 18362.0 或更高版本 
- 体系结构 ARM64、x64、x86 
安装 Windows Terminal (Preview)
参考 安装 windows-terminal-preview
或者参考 The-Package-Manager-for-Windows-choco-and-scoop
| 1 | sudo choco install microsoft-windows-terminal --yes | 
更换字体与主题并修改启动命令行
注意: 需要先安装 scoop
- 按快捷键 win + X + A以管理员权限打开 powershell 终端, 然后执行以下命令, 以下载安装Droid Sans Mono for Powerline字体(由于这个bug, 只能先用这个字体), 以及FuraCode Nerd Font Mono字体1 
 2
 3scoop bucket add nerd-fonts 
 sudo scoop install DroidSansMono-NF
 sudo scoop install FiraCode
- 按快捷键 win + Q然后键入windows terminal并回车, 以运行windows terminal.
- 选中 windows terminal并按快捷键ctrl + ,(逗号), 以编辑windows terminal配置文件:profiles.json.
- 复制以下内容并覆盖 profiles.json文件, 按快捷键Ctrl + S以保存修改.1 
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117// To view the default settings, hold "alt" while clicking on the "Settings" button. 
 // For documentation on these settings, see: https://aka.ms/terminal-documentation
 {
 "$schema": "https://aka.ms/terminal-profiles-schema",
 "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
 "initialCols" : 140,
 "initialRows" : 30,
 "profiles": [
 {
 // Make changes here to the powershell.exe profile
 "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
 "acrylicOpacity": 0.9,
 "fontSize": 12,
 "fontFace": "Fira Code",
 "cursorShape": "underscore",
 "historySize": 9001,
 "useAcrylic" : true,
 "name": "Windows PowerShell",
 "colorScheme": "Tomorrow Night",
 "commandline": "powershell.exe",
 "hidden": false,
 "startingDirectory": null
 },
 {
 // Make changes here to the cmd.exe profile
 "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
 "name": "cmd",
 "commandline": "cmd.exe",
 "hidden": false
 },
 {
 "guid": "{a5a97cb8-8961-5535-816d-772efe0c6a3f}",
 "hidden": false,
 "name": "Arch",
 "source": "Windows.Terminal.Wsl"
 },
 {
 "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
 "hidden": false,
 "name": "Azure Cloud Shell",
 "source": "Windows.Terminal.Azure"
 }
 ],
 // Add custom color schemes to this array
 "schemes": [
 {
 "name": "Tomorrow Night",
 "black": "#000000",
 "red": "#cc6666",
 "green": "#b5bd68",
 "yellow": "#f0c674",
 "blue": "#81a2be",
 "purple": "#b294bb",
 "cyan": "#8abeb7",
 "white": "#ffffff",
 "brightBlack": "#000000",
 "brightRed": "#cc6666",
 "brightGreen": "#b5bd68",
 "brightYellow": "#f0c674",
 "brightBlue": "#81a2be",
 "brightPurple": "#b294bb",
 "brightCyan": "#8abeb7",
 "brightWhite": "#ffffff",
 "background": "#1d1f21",
 "foreground": "#c5c8c6"
 },
 {
 "name": "Tomorrow",
 "black": "#000000",
 "red": "#c82829",
 "green": "#718c00",
 "yellow": "#eab700",
 "blue": "#4271ae",
 "purple": "#8959a8",
 "cyan": "#3e999f",
 "white": "#ffffff",
 "brightBlack": "#000000",
 "brightRed": "#c82829",
 "brightGreen": "#718c00",
 "brightYellow": "#eab700",
 "brightBlue": "#4271ae",
 "brightPurple": "#8959a8",
 "brightCyan": "#3e999f",
 "brightWhite": "#ffffff",
 "background": "#ffffff",
 "foreground": "#4d4d4c"
 },
 {
 "name": "Teerb",
 "black": "#1c1c1c",
 "red": "#d68686",
 "green": "#aed686",
 "yellow": "#d7af87",
 "blue": "#2e8fff",
 "purple": "#d6aed6",
 "cyan": "#8adbb4",
 "white": "#d0d0d0",
 "brightBlack": "#595959",
 "brightRed": "#d68686",
 "brightGreen": "#aed686",
 "brightYellow": "#e4c9af",
 "brightBlue": "#86aed6",
 "brightPurple": "#d6aed6",
 "brightCyan": "#b1e7dd",
 "brightWhite": "#efefef",
 "background": "#262626",
 "foreground": "#d0d0d0"
 }
 ],
 // Add any keybinding overrides to this array.
 // To unbind a default keybinding, set the command to "unbound"
 "keybindings": []
 }
添加到鼠标右键菜单
下载 wget
| 1 | scoop install wget | 
下载 terminal-box-fill.ico
| 1 | cd ~ | 
新建 window.terminal.reg 文件
修正其中路径
| 1 | Windows Registry Editor Version 5.00 | 
双击 window.terminal.reg 执行