前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Terminal配置

Terminal配置

原创
作者头像
Centy Zhao
修改2020-06-22 10:28:54
8290
修改2020-06-22 10:28:54
举报
文章被收录于专栏:icecream小屋icecream小屋

1.1 如何给 Windows Terminal 增加一个新的终端

eg: 我给Terminal添加了git bush

只需要在list 列表里面添加一个git终端,code如下:

代码语言:javascript
复制
"list":
        [
            {
                // Make changes here to the git-bash.exe profile
                "guid": "{12a5517e-7758-458a-adf1-c3cadeda9ac8}",
                "name": "Git Bash",
                "icon": "C:\\Users\\Administrator\\Pictures\\icon\\git.png", //git图标
                "commandline": "D:\\Git\\bin\\bash.exe", //你的git路径
                "hidden": false
            },
​
•           { other termianl
​
•             }
​
•       ]

若想添加背景图片可在所在的list列表里直接添加:

代码语言:javascript
复制
        {
            // Make changes here to the git-bash.exe profile
            "guid": "{12a5517e-7758-458a-adf1-c3cadeda9ac8}",
            "name": "Git Bash",
            "icon": "C:\\Users\\Administrator\\Pictures\\icon\\git.png",
            "backgroundImage" : "C:\\Users\\Administrator\\Pictures\\Saved Pictures\\git.jpg",
            "commandline": "D:\\Git\\bin\\bash.exe",
            "hidden": false
        }

我的seting设置:

若想要源代码可以参考我的GitHub:https://github.com/SeptemberBeryl/wire/blob/master/README.md,包含图片。

windows
windows

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1.1 如何给 Windows Terminal 增加一个新的终端
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档