更改powershell命令颜色

时间:2019-05-20 08:25:02

标签: powershell intellij-idea

如何在Powershell中更改命令颜色?目前它是黄色的,当我使用嵌套在Intellij中的powershell时,无法在白色背景上读取黄色命令。

powershell command color

4 个答案:

答案 0 :(得分:2)

您还可以在终端设置中设置环境变量:

IntelliJ terminal settings

然后编辑您的powershell配置文件并添加如下内容:

if ($env:CommandColor) {
    Set-PSReadLineOption -colors @{ Command = $env:CommandColor}
}

答案 1 :(得分:1)

访问此Link,以了解如何更改PowerShell命令的颜色。

此外,您还可以使用Ohmyz自定义PowerShell,它们还具有一些很棒的插件主题

答案 2 :(得分:1)

请参阅cmdlet Get-PSReadlineOptionSet-PSReadlineOption

您可能要更改:

 from selenium import webdriver

# Load proxy option
from selenium.webdriver.common.proxy import Proxy, ProxyType

# Configure Proxy Option
prox = Proxy()
prox.proxy_type = ProxyType.MANUAL

# Proxy IP & Port
prox.http_proxy = "149.215.113.110:70"

# Configure capabilities 
capabilities = webdriver.DesiredCapabilities.CHROME
prox.add_to_capabilities(capabilities)

# Configure ChromeOptions
driver = webdriver.Chrome(executable_path='/home/user/Downloads/chromedriver',desired_capabilities=capabilities)
driver.get("http://www.whatsmyip.org/")

或查看当前设置:

Set-PSReadlineOption -Tokenkind Command -BackgroundColor Black

答案 3 :(得分:0)

关于@LotPings答案,我解决了我的问题。 powershell中的以下命令将命令颜色从黄色更改为绿色:

Set-PSReadLineOption -colors @{ Command = "Green"}