windows Powershell配色方案?

ni65a41a  于 2022-12-14  发布在  Windows
关注(0)|答案(5)|浏览(655)

有没有一个地方我可以找到人们已经建立的Powershell配色方案?类似https://github.com/lysyi3m/osx-terminal-themes的东西,但适用于Windows Powershell而不是OSX。
我找到了这个https://github.com/Segaso/MonokaiTheme,但我不知道在哪里找到这个“工具”。当我右键单击任何PowerShell窗口的顶部时,我看到的都是这样的:

这是我在属性下看到的所有内容:

n3h0vuf2

n3h0vuf21#

微软去年自己发布了Windows Console Colortool
它可以使用/修改任何控制台应用程序的调色板(cmd/Powershell/WSL-bash)。
colortool可以使用任何.itermcolors配置。
download from github

toe95027

toe950272#

很简单。你可以在powershell中运行这些命令。这是一个定制的配色方案。

$Host.UI.RawUI.BackgroundColor = ($bckgrnd = 'Black')
$Host.UI.RawUI.ForegroundColor = 'White'
$Host.PrivateData.ErrorForegroundColor = 'DarkRed'
$Host.PrivateData.ErrorBackgroundColor = $bckgrnd
$Host.PrivateData.WarningForegroundColor = 'Yellow'
$Host.PrivateData.WarningBackgroundColor = $bckgrnd
$Host.PrivateData.DebugForegroundColor = 'Yellow'
$Host.PrivateData.DebugBackgroundColor = $bckgrnd
$Host.PrivateData.VerboseForegroundColor = 'Green'
$Host.PrivateData.VerboseBackgroundColor = $bckgrnd
$Host.PrivateData.ProgressForegroundColor = 'Blue'
$Host.PrivateData.ProgressBackgroundColor = $bckgrnd
Clear-Host

如果你想有自己的方案,你可以选择颜色,因为你希望。
要获取颜色列表,请运行下面的命令。

get-help write-host

您将获得powershell的所有可用颜色。

1szpjjfi

1szpjjfi3#

我用这个颜色scheme.it有solarized-dark主题。确保你在安装了scoopconcfg后,用concfg export console-backup.json备份你当前的预设。更多信息请使用https://github.com/lukesampson/concfg链接

vecaoik1

vecaoik14#

您可以在伊势Powershell中找到此功能

ctzwtxfj

ctzwtxfj5#

点击@user6811411的回复,你还可以使用整个Windows终端应用程序,它集成了颜色工具,可以从Microsoft Store获得。在应用程序的设置中,你可以很容易地更改颜色方案。
只有在应用程序内部启动的PowerShell会话才会改变颜色,但我发现在一个窗口中组织我所有的终端非常有用,所以这对我来说不是一个大的缺点。我还喜欢定义自定义shell的选项。

相关问题