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
| { "$schema": "https://aka.ms/terminal-profiles-schema", "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "copyOnSelect": false, "copyFormatting": false, "profiles": { "defaults": { "closeOnExit" : true, "padding" : "0, 0, 0, 0", "snapOnInput" : true, "historySize" : 9001, "antialiasingMode" : "cleartype", "altGrAliasing" : true, "useAcrylic" : true, "acrylicOpacity": 0.25, "cursorColor" : "#E6FF00", "cursorShape" : "bar", "fontFace" : "Fira Code", "fontSize" : 11, "hidden": false, "tabTitle" : "默认窗体", "alwaysShowTabs": true }, "list": [ { "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "name": "Windows PowerShell", "commandline": "powershell.exe", "colorScheme" : "Ubuntu", "icon" : "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\powershell.png", "backgroundImage": "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\colorful.jpg", "backgroundImageOpacity": 0.5, "tabTitle" : "Windows PowerShell", "startingDirectory" : "D:\\" }, { "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "name": "命令提示符", "commandline": "cmd.exe", "colorScheme" : "Ubuntu", "icon" : "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\cmd.jpg", "backgroundImage": "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\colorful.jpg", "backgroundImageOpacity": 0.5, "tabTitle" : "CMD", "startingDirectory" : "D:\\" }, { "guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", "name": "Ubuntu-20.04", "source": "Windows.Terminal.Wsl", "colorScheme" : "Ubuntu", "icon" : "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\ubutun.jpg", "backgroundImage": "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\colorful.jpg", "backgroundImageOpacity": 0.5, "tabTitle" : "Ubuntu", "startingDirectory" : "//wsl$/Ubuntu-20.04/home/sunyang" }, { "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", "name": "Azure Cloud Shell", "source": "Windows.Terminal.Azure", "colorScheme" : "Ubuntu", "icon" : "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\cloud.jpg", "backgroundImage": "C:\\Users\\sunya\\Pictures\\WindowsTerminal\\colorful.jpg", "backgroundImageOpacity": 0.5, "tabTitle" : "Azure Cloud" } ] }, "schemes": [ { "name": "Ubuntu", "black": "#2e3436", "red": "#cc0000", "green": "#4e9a06", "yellow": "#c4a000", "blue": "#3465a4", "purple": "#75507b", "cyan": "#06989a", "white": "#d3d7cf", "brightBlack": "#555753", "brightRed": "#ef2929", "brightGreen": "#8ae234", "brightYellow": "#fce94f", "brightBlue": "#729fcf", "brightPurple": "#ad7fa8", "brightCyan": "#34e2e2", "brightWhite": "#eeeeec", "background": "#300a24", "foreground": "#eeeeec" } ], "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" } ] }
|