모든 도움말 명령의 색상화 옵션

모든 도움말 명령의 색상화 옵션

내 명령의 출력은 sed다음과 같습니다.

sed --help
Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]...

  -n, --quiet, --silent
                 suppress automatic printing of pattern space
      --debug
                 annotate program execution
  -e script, --expression=script
                 add the script to the commands to be executed
  -f script-file, --file=script-file
                 add the contents of script-file to the commands to be executed

내 터미널에서는 st검정색 배경에 흰색이 모두 적용되어 작업에 높은 대비를 제공합니다.

-f script-file, --file=script-file최근에 마음이 바뀌었습니다. // 모든 -e script, --expression=script색상을 흰색 - 노란색보다 더 눈에 띄는 색상으로 변경하고 싶습니다 -n, --quiet, --silent. 예를 들어, Howto?

저는 zsh와 st를 사용하고 있습니다.

답변1

~에 따르면이 ArchWiki 페이지, 소스 코드를 가져와 C++ 헤더 및 def 파일을 변경한 config.h다음 config.def.h바이너리를 다시 컴파일해야 합니다.

st나 자신은 잘 모르지만,https://st.suckless.org/patches/ST 사용자 정의에 대한 해킹 및 가이드에 대한 정보가 포함된 일부 커뮤니티 패치(Dracula 등 참조)가 있습니다.

oh-my-zsh를 시도해 볼 수 있습니다. 테마, 별칭 등과 같은 zsh에 대한 몇 가지 도우미를 제공합니다. 아마도 이것이 도움이 될 것이며 소스 코드를 컴파일할 필요가 없습니다.https://github.com/robbyrussell/oh-my-zsh

관련 정보