# Configuration file for the color ls utility # @(#) $Id: .dir_colors,v 1.2 1999/06/23 21:14:00 myers Exp myers $ # COLOR needs one of these arguments: # 'tty' colorizes output to ttys, but not pipes (--color=auto), # 'all' adds color characters to all output (--color=always), # 'all' shuts colorization off (--color=never). COLOR tty # Extra command line options for ls go here. # Basically these ones are: # -F = show '/' for dirs, '*' for executables, etc. # -T 0 = don't trust tab spacing when formatting ls output. # -b = better support for special characters OPTIONS -F -b -T 0 # Below, there should be one TERM entry for each termtype that is colorizable TERM linux TERM console TERM con80x25 TERM con80x28 TERM con80x30 TERM con80x43 TERM con80x50 TERM con80x60 TERM xterm TERM vt100 # Below are the color init strings for the basic file types. A color init # string consists of one or more of the following numeric codes: # Attribute codes: # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed # Text color codes: # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white # Background color codes: # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white NORMAL 00 # global default, although everything should be something. FILE 00 # normal file EXEC 01;35 # files with execute permission: DIR 01;34 # directory LINK 01;36 # symbolic link FIFO 40;33 # pipe SOCK 01;32 # socket BLK 40;33;01 # block device driver CHR 40;33;01 # character device driver ORPHAN 04;31 # symlink to nonexistent file