更新: 5/5/07 加入在emacs里显示彩色。 6/5/07 加入在xterm里显示彩色。 ------------------------------------------------------ 1。 Terminal 下显示固定的前景,背景 Terminal -> Window Settings -> Color 你还可以选透明度和背景图像。 ------------------------------------------------------ 2。 Terminal 下不同类型的文件显示不同的颜色 Terminal 默认的 shell 是 bash (提示符是 $) 在 ~ 先建立一个文件 ~/.bash_profile 加入下面的两行: export CLICOLOR=1 export LSCOLORS=gxfxaxdxcxegedabagacad 存盘, 退出Terminal, 重起Terminal. 更改LSCOLORS可以有不同的颜色效果。 ----------------------------------------------------- 如果你用的是 csh/tcsh (提示符是 %), 建立 ~/.cshrc 加入 setenv CLICOLOR 1 setenv LSCOLORS gxfxaxdxcxegedabagacad 存盘, 执行 source ~/.cshrc ------------------------------------------------------ LSCOLORS 的含义: LSCOLORS The value of this variable describes what color to use for which attribute when colors are enabled with CLICOLOR. This string is a concatenation of pairs of the format fb, where f is the foreground color and b is the background color. The color designators are as follows: a black b red c green d brown e blue f magenta g cyan h light grey A bold black, usually shows up as dark grey B bold red C bold green D bold brown, usually shows up as yellow E bold blue F bold magenta G bold cyan H bold light grey; looks like bright white x default foreground or background Note that the above are standard ANSI colors. The actual display may differ depending on the color capabilities of the terminal in use. The order of the attributes are as follows: 1. directory 2. symbolic link 3. socket 4. pipe 5. executable 6. block special 7. character special 8. executable with setuid bit set 9. executable with setgid bit set 10. directory writable to others, with sticky bit 11. directory writable to others, without sticky bit The default is “exfxcxdxbxegedabagacad”, i.e. blue fore- ground and default background for regular directories, black foreground and red background for setuid executa- bles, etc. ------------------------------------------------------ 3。 emacs 显示彩色: 最简单的办法是在 ~ 先建立一个文件 ~/.emacs 加入 (global-font-lock-mode t) ------------------------------------------------------ 4。如果想在X11的xterm 里显示彩色, Terminal 默认的 shell 是 bash (提示符是 $), 它有个奇怪的地方: xterm 启动时读.bashrc, 而不是 .bash_profile, 但是Termial.app正相反, Terminal 启动时读.bash_profile, 而不是 .basrc 需要建立一个 ~/.bashrc (就两行) export CLICOLOR=1 export TERM=xterm-color 如果你嫌重复麻烦的话,就把所有的设置放在 .bashrc里。 然后在 .bash_profile里就放一行 source ~/.bashrc ------------------------------------------------------ 要是用 csh/tcsh的话, 建立 ~/.cshrc (就两行) setenv CLICOLOR setenv TERM xterm-color 存盘, 执行 source ~/.cshrc 启动 X11 xterm 后,执行 csh 或 tcsh 如果你想修改颜色的搭配,再加入LSCOLORS好了。 ------------------------------------------------------ [ 本帖最后由 pointer 于 2008-7-6 10:49 编辑 ] |
|