change colour for parameters on powershell linux [closed]
up vote
-1
down vote
favorite
can you see the -Uri
Parameter? this is very hard to read on linux.
is there a way to change the colour?
linux powershell console powershell-core
closed as off-topic by jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen Nov 10 at 1:14
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about general computing hardware and software are off-topic for Stack Overflow unless they directly involve tools used primarily for programming. You may be able to get help on Super User." – jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen
add a comment |
up vote
-1
down vote
favorite
can you see the -Uri
Parameter? this is very hard to read on linux.
is there a way to change the colour?
linux powershell console powershell-core
closed as off-topic by jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen Nov 10 at 1:14
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about general computing hardware and software are off-topic for Stack Overflow unless they directly involve tools used primarily for programming. You may be able to get help on Super User." – jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen
This is good and useful information, but probably would be more appropriate on Super User or Unix & Linux, as the issue is not "unique to software development". As always, prior to posting on another site, please read the on-topic page for whichever site on which you are thinking of posting this.
– Makyen
Nov 10 at 1:23
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
can you see the -Uri
Parameter? this is very hard to read on linux.
is there a way to change the colour?
linux powershell console powershell-core
can you see the -Uri
Parameter? this is very hard to read on linux.
is there a way to change the colour?
linux powershell console powershell-core
linux powershell console powershell-core
edited Nov 10 at 0:04
LotPings
15.9k61531
15.9k61531
asked Nov 9 at 21:57
Guenther Schmitz
7851214
7851214
closed as off-topic by jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen Nov 10 at 1:14
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about general computing hardware and software are off-topic for Stack Overflow unless they directly involve tools used primarily for programming. You may be able to get help on Super User." – jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen
closed as off-topic by jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen Nov 10 at 1:14
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about general computing hardware and software are off-topic for Stack Overflow unless they directly involve tools used primarily for programming. You may be able to get help on Super User." – jww, K.Dᴀᴠɪs, eyllanesc, TheIncorrigible1, Makyen
This is good and useful information, but probably would be more appropriate on Super User or Unix & Linux, as the issue is not "unique to software development". As always, prior to posting on another site, please read the on-topic page for whichever site on which you are thinking of posting this.
– Makyen
Nov 10 at 1:23
add a comment |
This is good and useful information, but probably would be more appropriate on Super User or Unix & Linux, as the issue is not "unique to software development". As always, prior to posting on another site, please read the on-topic page for whichever site on which you are thinking of posting this.
– Makyen
Nov 10 at 1:23
This is good and useful information, but probably would be more appropriate on Super User or Unix & Linux, as the issue is not "unique to software development". As always, prior to posting on another site, please read the on-topic page for whichever site on which you are thinking of posting this.
– Makyen
Nov 10 at 1:23
This is good and useful information, but probably would be more appropriate on Super User or Unix & Linux, as the issue is not "unique to software development". As always, prior to posting on another site, please read the on-topic page for whichever site on which you are thinking of posting this.
– Makyen
Nov 10 at 1:23
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
Hemant answered my question on twitter. You can see the colour settings with the Cmdlet Get-PSReadLineOption
. To edit the property ParameterColor
I ran Set-PSReadLineOption -Colors @"Parameter"=[ConsoleColor]::Gray
.
Yes.. Looking atGet-Help -Name Set-PSReadLineOption
would tell you this.
– TheIncorrigible1
Nov 10 at 0:26
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
Hemant answered my question on twitter. You can see the colour settings with the Cmdlet Get-PSReadLineOption
. To edit the property ParameterColor
I ran Set-PSReadLineOption -Colors @"Parameter"=[ConsoleColor]::Gray
.
Yes.. Looking atGet-Help -Name Set-PSReadLineOption
would tell you this.
– TheIncorrigible1
Nov 10 at 0:26
add a comment |
up vote
0
down vote
accepted
Hemant answered my question on twitter. You can see the colour settings with the Cmdlet Get-PSReadLineOption
. To edit the property ParameterColor
I ran Set-PSReadLineOption -Colors @"Parameter"=[ConsoleColor]::Gray
.
Yes.. Looking atGet-Help -Name Set-PSReadLineOption
would tell you this.
– TheIncorrigible1
Nov 10 at 0:26
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
Hemant answered my question on twitter. You can see the colour settings with the Cmdlet Get-PSReadLineOption
. To edit the property ParameterColor
I ran Set-PSReadLineOption -Colors @"Parameter"=[ConsoleColor]::Gray
.
Hemant answered my question on twitter. You can see the colour settings with the Cmdlet Get-PSReadLineOption
. To edit the property ParameterColor
I ran Set-PSReadLineOption -Colors @"Parameter"=[ConsoleColor]::Gray
.
answered Nov 9 at 22:15
Guenther Schmitz
7851214
7851214
Yes.. Looking atGet-Help -Name Set-PSReadLineOption
would tell you this.
– TheIncorrigible1
Nov 10 at 0:26
add a comment |
Yes.. Looking atGet-Help -Name Set-PSReadLineOption
would tell you this.
– TheIncorrigible1
Nov 10 at 0:26
Yes.. Looking at
Get-Help -Name Set-PSReadLineOption
would tell you this.– TheIncorrigible1
Nov 10 at 0:26
Yes.. Looking at
Get-Help -Name Set-PSReadLineOption
would tell you this.– TheIncorrigible1
Nov 10 at 0:26
add a comment |
This is good and useful information, but probably would be more appropriate on Super User or Unix & Linux, as the issue is not "unique to software development". As always, prior to posting on another site, please read the on-topic page for whichever site on which you are thinking of posting this.
– Makyen
Nov 10 at 1:23