【发布时间】:2020-12-16 02:11:25
【问题描述】:
【问题讨论】:
-
我认为这是微软商店的应用,搜索终端
-
对。我有应用程序,但要像显示的图像一样美化它。
标签: windows-terminal
【问题讨论】:
标签: windows-terminal
我写了一篇关于我如何定制我的 Windows 终端的文章,几个月前在dev.to 上发表。
Github 链接 - https://github.com/anup-a/Beautify-your-Windows-Terminal
链接到 dev.to 文章 - https://dev.to/anupa/beautify-your-windows-terminal-1la8
【讨论】:
这就是 Powershell 的电力线。你可以去here寻求帮助。
背景是透明的亚克力背景,您可以在 settings.json 中的 Powershell 配置文件中通过设置 "useAcrylic": true 和 "acrylicOpacity": 0.4 将其打开,如下所示:
{
// Make changes here to the powershell.exe profile.
"guid": "{YOUR GUID HERE}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"useAcrylic": true,
"acrylicOpacity": 0.4,
"hidden": false
},
如果您使用的是 Windows,请确保您在 Personalize-->Colors 中打开了“透明效果”
【讨论】: