windows terminal

settings.json


{
    "$schema": "https://aka.ms/terminal-profiles-schema",
    "defaultProfile": "{e6d6c185-64bc-49d0-b18d-cb66a3355fb7}",	//默认配置文件
    "profiles":
    {
        "defaults":
        {
            //"colorScheme":"Solarized Dark"	//主题
        },
        "list":
        [
            {
                "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "name": "Windows PowerShell",
                "commandline": "powershell.exe",
                "hidden": false,
                "backgroundImage":"C:\Users\Administrator\Pictures\Saved Pictures\005.jpg",	//背景图片路径
                "backgroundImageOpacity":0.6	//背景图片透明度
            },
            {
                "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
                "name": "Command Prompt",
                "commandline": "cmd.exe",
                "hidden": false,
                "backgroundImage":"C:\Users\Administrator\Pictures\Saved Pictures\001.jpg",	//背景图片路径
                "backgroundImageOpacity":0.5	//背景图片透明度
            },
            {
                "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
                "hidden": false,
                "name": "Azure Cloud Shell",
                "source": "Windows.Terminal.Azure"
            },
            {
                "guid": "{e6d6c185-64bc-49d0-b18d-cb66a3355fb7}",
                "name": "ssh debian10",
                "commandline": "ssh root@www.ianeao.com",
                "hidden": false,
                "icon": "C:\Users\Administrator\Pictures\ico\debian-favicon.ico",	//icon图标路径
                "colorScheme":"One Half Dark",	//主题
                "backgroundImage":"C:\Users\Administrator\Pictures\Saved Pictures\004.jpg",	//背景图片路径
                "backgroundImageOpacity":0.6	//背景图片透明度
                //"tabTitle":""	//标题
            },
            {
                "guid": "{DA6C33F1-1B33-15BE-50DA-C69D470E3914}",
                "name": "ssh kali2020",
                "commandline": "ssh root@kali.ianeao.com",
                "hidden": false,
                "icon": "C:\Users\Administrator\Pictures\ico\kali-favicon.ico",	//icon图标路径
                "colorScheme":"One Half Dark",	//主题
                "backgroundImage":"C:\Users\Administrator\Pictures\Saved Pictures\003.jpg",	//背景图片路径
                "backgroundImageOpacity":0.44	//背景图片透明度
            }
        ]
    },
    "schemes":[],
    "actions":
    [
        { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
        { "command": "paste", "keys": "ctrl+v" },
        { "command": "find", "keys": "ctrl+shift+f" },
        { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" }
    ]
}

原文地址:https://www.cnblogs.com/dech/p/14342161.html