Window PowerShell 배경, 글 색상 변경...2022. 3. 10. 23:51
Table of Contents
728x90
PowerShell 가독성이 너무 떨어져서 바꿔보았다.
PS C:\Users\Shinsohui> cd\
PS C:\> $host.privatedata # 색상값 출력
# 현재 설정되어 있는 글자 색상값이 출력된다.
ErrorForegroundColor : Red
ErrorBackgroundColor : Black
WarningForegroundColor : Yellow
WarningBackgroundColor : Black
DebugForegroundColor : Yellow
DebugBackgroundColor : Black
VerboseForegroundColor : Yellow
VerboseBackgroundColor : Black
ProgressForegroundColor : Yellow
ProgressBackgroundColor : DarkCyan
PS C:\> cd ~
PS C:\Users\Shinsohui> $host.privatedata.errorbackgroundcolor = "Black"
PS C:\Users\Shinsohui> $host.privatedata.errorforegroundcolor = "Red"
PS C:\Users\Shinsohui> $host.privatedata.Warningforegroundcolor = "Yellow"
PS C:\Users\Shinsohui> $host.privatedata.Warningbackgroundcolor = "Black"
PS C:\Users\Shinsohui> $host.privatedata.Debugbackgroundcolor = "Black"
PS C:\Users\Shinsohui> $host.privatedata.Debugforegroundcolor = "Yellow"
PS C:\Users\Shinsohui> $host.privatedata.Verbosebackgroundcolor = "Black"
PS C:\Users\Shinsohui> $host.privatedata.Verboseforegroundcolor = "Yellow"
PS C:\Users\Shinsohui> $host.privatedata.Progressforegroundcolor = "Yellow"
PS C:\Users\Shinsohui> $host.privatedata.Progressbackgroundcolor = "DarkCyan"
# 다시 출력해보기
PS C:\Users\Shinsohui> $host.privatedata
ErrorForegroundColor : Red
ErrorBackgroundColor : Black
WarningForegroundColor : Yellow
WarningBackgroundColor : Black
DebugForegroundColor : Yellow
DebugBackgroundColor : Black
VerboseForegroundColor : Yellow
VerboseBackgroundColor : Black
ProgressForegroundColor : Yellow
ProgressBackgroundColor : DarkCyan
PS C:\Users\Shinsohui>
728x90
'...' 카테고리의 다른 글
마일드라이너 색상 코드표 (0) | 2022.03.20 |
---|
@TTOII :: 뭉게뭉게 클라우드
영차영차 성장 블로그
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!