Window PowerShell设置背景图片

简介: Window PowerShell设置背景图片

Q:突然感觉的 PowerShell 终端默认颜色有点单调,就想着给它换个背景图,查找资料后,可以通过以下方式修改背景


method:


  • 1.打开 PowerShell 点击设置进入到 setting.json文件中



  • 2.可设置毛玻璃效果以及透明度


"defaults":
        {
            // Put settings here that you want to apply to all profiles.
           // 设置毛玻璃以及透明度
      "useAcrylic": true,
      "acrylicOpacity": 0.5
        },


  • 3.通过"backgroundImage"和"backgroundImageOpacity"设置对应图片以及透明度即可


"list":
        [
            {
                // Make changes here to the powershell.exe profile.
                "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "name": "Windows PowerShell",
                "commandline": "powershell.exe",
                "hidden": false,
        "backgroundImage": "D:xxx.jpeg",
        "backgroundImageOpacity": 0.5
            },
            {
                // Make changes here to the cmd.exe profile.
                "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
                "name": "命令提示符",
                "commandline": "cmd.exe",
                "hidden": false,
        "backgroundImage": "D:xxx.jpeg",
        "backgroundImageOpacity": 0.5
            },
            {
                "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
                "hidden": false,
                "name": "Azure Cloud Shell",
                "source": "Windows.Terminal.Azure",
        "backgroundImage": "D:xxx.jpeg",
        "backgroundImageOpacity": 0.5
            }
        ]


  • 效果真不戳


相关文章
|
14天前
|
网络安全 Windows
window powershell 查看ssh
window powershell 查看ssh
|
3月前
|
存储 Windows
在 PowerShell 中获取代理设置
【8月更文挑战第27天】
98 6
|
3月前
|
数据安全/隐私保护 异构计算 Windows
【Azure 环境】 介绍两种常规的方法来监视Window系统的CPU高时的进程信息: Performance Monitor 和 Powershell Get-Counter
【Azure 环境】 介绍两种常规的方法来监视Window系统的CPU高时的进程信息: Performance Monitor 和 Powershell Get-Counter
powershell 设置代理
powershell 设置代理
298 0
PowerShell设置Http、Https代理
PowerShell设置Http、Https代理
1314 0
window powershell 获取所有用户的最后登录时间
ComputerName) | Where-Object {adsi = [ADSI]"WinNT://adsi.Children | where {today=Get-Date -Format 'yyyyMMdd'ipaddr+""+ -replac...
1095 0
window powershell 获取前后日期,格式化日期
today" 昨天 "昨天是:today.AddDays(-1))" 明天 "明天是:today.AddDays(1))" 一周前 "一周前是: today.
1694 0
|
Windows
window powershell设置脚本的执行权限
Windows PowerShell 现用执行策略很可能是Restricted(默认设置)。 Restricted 执行策略不允许任何脚本运行。若要了解计算机上的现用执行策略,请键入:get-executionpolicy 。
1820 0
|
1月前
|
监控 关系型数据库 MySQL
PowerShell 脚本编写 :自动化Windows 开发工作流程
PowerShell 脚本编写 :自动化Windows 开发工作流程
39 0
|
2月前
|
Windows
Powershell 重新排列去重 Windows环境变量
【9月更文挑战第13天】本文介绍如何使用PowerShell对Windows环境变量进行重新排列和去重。首先通过`$env:`访问环境变量,接着使用`-split`命令分割路径,再利用`Select-Object -Unique`去除重复项。之后可根据需要对路径进行排序,最后将处理后的路径组合并更新环境变量。注意修改环境变量前应备份重要数据并了解潜在影响。
127 10
下一篇
无影云桌面