系统安装这里就不过多赘述了,在msdn上下载win10 1903 customer 版,这个版本包括家庭版,教育版,专业版等win10版本,这里我选择了win10专业版。
安装由于我是mac的系统,这里也懒得装双系统所以就索性直接把系统装在我的虚拟机里面
经过一段时间1903安装完毕
这里安装vs2019是为了等会方便我们编译项目
git clone https://github.com/microsoft/Terminal
git submodule update --init --recursive
dep\nuget\nuget.exe restore OpenConsole.sln
{
"alwaysShowTabs": true,
"defaultProfile": "{81d66518-899b-471f-a02e-de60a762bf41}",
"experimental_showTabsInTitlebar": true,
"initialCols": 120,
"initialRows": 30,
"profiles": [
{
"guid": "{81d66518-899b-471f-a02e-de60a762bf41}",
"name": "cmd",
"colorscheme": "Campbell",
"historySize": 9001,
"snapOnInput": true,
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"commandline": "cmd.exe",
"fontFace": "Consolas",
"fontSize": 12,
"acrylicOpacity": 0.75,
"useAcrylic": true,
"closeOnExit": false,
"padding": "0, 0, 0, 0"
},
{
"guid": "{f5a53144-ba97-4c0d-9848-9fe4728837ed}",
"name": "PowerShell",
"colorscheme": "Campbell",
"historySize": 9001,
"snapOnInput": true,
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"commandline": "powershell.exe",
"fontFace": "Courier New",
"fontSize": 12,
"acrylicOpacity": 0.5,
"useAcrylic": true,
"closeOnExit": false,
"padding": "0, 0, 0, 0"
},
{
"guid": "{09dc5eef-6840-4050-ae69-21e55e6a2e62}",
"name": "Ubuntu",
"colorscheme": "Campbell",
"historySize": 9001,
"snapOnInput": true,
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"commandline": "wsl.exe",
"fontFace": "Consolas",
"fontSize": 12,
"acrylicOpacity": 0.75,
"useAcrylic": true,
"closeOnExit": false,
"padding": "0, 0, 0, 0"
}
],
"schemes": [
{
"name": "Campbell",
"foreground": "#F2F2F2",
"background": "#0C0C0C",
"colors": [ "#0C0C0C", "#C50F1F", "#13A10E", "#C19C00", "#0037DA", "#881798", "#3A96DD", "#CCCCCC", "#767676", "#E74856", "#16C60C", "#F9F1A5", "#3B78FF", "#B4009E", "#61D6D6", "#F2F2F2" ]
},
{
"name": "Solarized Dark",
"foreground": "#FDF6E3",
"background": "#073642",
"colors": [ "#073642", "#D30102", "#859900", "#B58900", "#268BD2", "#D33682", "#2AA198", "#EEE8D5", "#002B36", "#CB4B16", "#586E75", "#657B83", "#839496", "#6C71C4", "#93A1A1", "#FDF6E3" ]
},
{
"name": "Solarized Light",
"foreground": "#073642",
"background": "#FDF6E3",
"colors": [ "#073642", "#D30102", "#859900", "#B58900", "#268BD2", "#D33682", "#2AA198", "#EEE8D5", "#002B36", "#CB4B16", "#586E75", "#657B83", "#839496", "#6C71C4", "#93A1A1", "#FDF6E3" ]
}
],
"showTerminalTitleInTitlebar": false
}
目前Windows Terminal 还没有正式发布 还在测试阶段 肯定会有多多少少一些bug,但是喜欢尝鲜的朋友可以试试毕竟这也算是微软的一次很大的创新
教程