1
hillwall 2020-05-25 18:19:43 +08:00
所有 IDE 、编辑器、shell 我全用的 Dracula
|
2
mengqi 2020-05-25 19:48:12 +08:00 1
https://terminalsplash.com/
这个站点也挺好用的 |
3
BaiLinfeng 2020-05-26 00:49:04 +08:00
没看懂这是啥啊
|
4
PUBG98k 2020-05-26 13:51:46 +08:00
Windows Terminal 怎么样让他每次启动都是管理员权限启动呢?
|
5
mengqi 2020-06-03 19:22:36 +08:00
@PUBG98k 目前没有太方便的依靠配置实现的方法,可以关注一下这个 issue: https://github.com/microsoft/terminal/issues/632
一个稍微方便点的方案就是把 Terminal pin 到任务栏上,然后 Ctrl+Shift+单击 打开,或者直接 Win+Ctrl+Shift+数字( Terminal 在任务栏的位置编号)来打开。 |
7
PUBG98k 2020-06-04 12:53:12 +08:00
找到解决办法了.
下载 gsudo https://github.com/gerardog/gsudo/releases 把 gsudo.exe 解压到 system32 目录, Windows Terminal 的配置文件如下: 就每次启动都是管理员权限了,然后新建标签也是. { // Make changes here to the powershell.exe profile. "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "name": "Windows PowerShell", "commandline": "gsudo powershell.exe", "hidden": false }, { // Make changes here to the cmd.exe profile. "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "name": "CMD Shell", "commandline": "gsudo cmd.exe", "hidden": false }, |