| 1 |
# Configuration file for the color ls utility - modified for gray backgrounds
|
| 2 |
# Synchronized with coreutils 7.1 dircolors
|
| 3 |
# This file goes in the /etc directory, and must be world readable.
|
| 4 |
# You can copy this file to .dir_colors in your $HOME directory to override
|
| 5 |
# the system defaults.
|
| 6 |
|
| 7 |
# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
|
| 8 |
# pipes. 'all' adds color characters to all output. 'none' shuts colorization
|
| 9 |
# off.
|
| 10 |
COLOR tty
|
| 11 |
|
| 12 |
# Extra command line options for ls go here.
|
| 13 |
# Basically these ones are:
|
| 14 |
# -F = show '/' for dirs, '*' for executables, etc.
|
| 15 |
# -T 0 = don't trust tab spacing when formatting ls output.
|
| 16 |
OPTIONS -F -T 0
|
| 17 |
|
| 18 |
# Below, there should be one TERM entry for each termtype that is colorizable
|
| 19 |
TERM linux
|
| 20 |
TERM console
|
| 21 |
TERM con132x25
|
| 22 |
TERM con132x30
|
| 23 |
TERM con132x43
|
| 24 |
TERM con132x60
|
| 25 |
TERM con80x25
|
| 26 |
TERM con80x28
|
| 27 |
TERM con80x30
|
| 28 |
TERM con80x43
|
| 29 |
TERM con80x50
|
| 30 |
TERM con80x60
|
| 31 |
TERM cons25
|
| 32 |
TERM xterm
|
| 33 |
TERM xterm-16color
|
| 34 |
TERM xterm-88color
|
| 35 |
TERM xterm-256color
|
| 36 |
TERM rxvt
|
| 37 |
TERM rxvt-unicode
|
| 38 |
TERM xterm-color
|
| 39 |
TERM color-xterm
|
| 40 |
TERM vt100
|
| 41 |
TERM dtterm
|
| 42 |
TERM color_xterm
|
| 43 |
|
| 44 |
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
|
| 45 |
EIGHTBIT 1
|
| 46 |
|
| 47 |
# Below are the color init strings for the basic file types. A color init
|
| 48 |
# string consists of one or more of the following numeric codes:
|
| 49 |
# Attribute codes:
|
| 50 |
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
| 51 |
# Text color codes:
|
| 52 |
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
| 53 |
# Background color codes:
|
| 54 |
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
| 55 |
#NORMAL 00 # no color code at all
|
| 56 |
#FILE 00 # normal file, use no color at all
|
| 57 |
RESET 0
|
| 58 |
DIR 00;34 # directory
|
| 59 |
LINK 00;36 # symbolic link (If you set this to 'target' instead of a
|
| 60 |
# numerical value, the color is as for the file pointed to.)
|
| 61 |
MULTIHARDLINK 00 # regular file with more than one link
|
| 62 |
FIFO 40;33 # pipe
|
| 63 |
SOCK 00;35 # socket
|
| 64 |
DOOR 00;35 # door
|
| 65 |
BLK 40;33;01 # block device driver
|
| 66 |
CHR 40;33;01 # character device driver
|
| 67 |
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
|
| 68 |
MISSING 01;05;37;41 # ... and the files they point to
|
| 69 |
SETUID 37;41 # file that is setuid (u+s)
|
| 70 |
SETGID 30;43 # file that is setgid (g+s)
|
| 71 |
CAPABILITY 30;41 # file with capability
|
| 72 |
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
|
| 73 |
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
|
| 74 |
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
|
| 75 |
|
| 76 |
|
| 77 |
# This is for files with execute permission:
|
| 78 |
EXEC 00;32
|
| 79 |
|
| 80 |
# List any file extensions like '.gz' or '.tar' that you would like ls
|
| 81 |
# to colorize below. Put the extension, a space, and the color init string.
|
| 82 |
# (and any comments you want to add after a '#')
|
| 83 |
#.cmd 00;32 # executables (green)
|
| 84 |
#.exe 00;32
|
| 85 |
#.com 00;32
|
| 86 |
#.btm 00;32
|
| 87 |
#.bat 00;32
|
| 88 |
#.sh 00;32
|
| 89 |
#.csh 00;32
|
| 90 |
# archives or compressed (red)
|
| 91 |
.tar 00;31
|
| 92 |
.tgz 00;31
|
| 93 |
.arj 00;31
|
| 94 |
.taz 00;31
|
| 95 |
.lzh 00;31
|
| 96 |
.lzma 00;31
|
| 97 |
.tlz 00;31
|
| 98 |
.txz 00;31
|
| 99 |
.zip 00;31
|
| 100 |
.z 00;31
|
| 101 |
.Z 00;31
|
| 102 |
.dz 00;31
|
| 103 |
.gz 00;31
|
| 104 |
.lz 00;31
|
| 105 |
.xz 00;31
|
| 106 |
.bz2 00;31
|
| 107 |
.tbz 00;31
|
| 108 |
.tbz2 00;31
|
| 109 |
.bz 00;31
|
| 110 |
.tz 00;31
|
| 111 |
.deb 00;31
|
| 112 |
.rpm 00;31
|
| 113 |
.jar 00;31
|
| 114 |
.rar 00;31
|
| 115 |
.ace 00;31
|
| 116 |
.zoo 00;31
|
| 117 |
.cpio 00;31
|
| 118 |
.7z 00;31
|
| 119 |
.rz 00;31
|
| 120 |
# image formats (magenta)
|
| 121 |
.jpg 00;35
|
| 122 |
.jpeg 00;35
|
| 123 |
.gif 00;35
|
| 124 |
.bmp 00;35
|
| 125 |
.pbm 00;35
|
| 126 |
.pgm 00;35
|
| 127 |
.ppm 00;35
|
| 128 |
.tga 00;35
|
| 129 |
.xbm 00;35
|
| 130 |
.xpm 00;35
|
| 131 |
.tif 00;35
|
| 132 |
.tiff 00;35
|
| 133 |
.png 00;35
|
| 134 |
.svg 00;35
|
| 135 |
.svgz 00;35
|
| 136 |
.mng 00;35
|
| 137 |
.pcx 00;35
|
| 138 |
.mov 00;35
|
| 139 |
.mpg 00;35
|
| 140 |
.mpeg 00;35
|
| 141 |
.m2v 00;35
|
| 142 |
.mkv 00;35
|
| 143 |
.ogm 00;35
|
| 144 |
.mp4 00;35
|
| 145 |
.m4v 00;35
|
| 146 |
.mp4v 00;35
|
| 147 |
.vob 00;35
|
| 148 |
.qt 00;35
|
| 149 |
.nuv 00;35
|
| 150 |
.wmv 00;35
|
| 151 |
.asf 00;35
|
| 152 |
.rm 00;35
|
| 153 |
.rmvb 00;35
|
| 154 |
.flc 00;35
|
| 155 |
.avi 00;35
|
| 156 |
.fli 00;35
|
| 157 |
.flv 00;35
|
| 158 |
.gl 00;35
|
| 159 |
.dl 00;35
|
| 160 |
.xcf 00;35
|
| 161 |
.xwd 00;35
|
| 162 |
.yuv 00;35
|
| 163 |
.cgm 00;35
|
| 164 |
.emf 00;35
|
| 165 |
|
| 166 |
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
|
| 167 |
.axv 00;35
|
| 168 |
.anx 00;35
|
| 169 |
.ogv 00;35
|
| 170 |
.ogx 00;35
|
| 171 |
|
| 172 |
# audio formats (cyan)
|
| 173 |
.aac 00;36
|
| 174 |
.au 00;36
|
| 175 |
.flac 00;36
|
| 176 |
.mid 00;36
|
| 177 |
.midi 00;36
|
| 178 |
.mka 00;36
|
| 179 |
.mp3 00;36
|
| 180 |
.mpc 00;36
|
| 181 |
.ogg 00;36
|
| 182 |
.ra 00;36
|
| 183 |
.wav 00;36
|
| 184 |
|
| 185 |
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
|
| 186 |
.axa 00;36
|
| 187 |
.oga 00;36
|
| 188 |
.spx 00;36
|
| 189 |
.xspf 00;36
|