home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120521.etc.tar.gz / bradford.20120521.etc.tar / etc / DIR_COLORS < prev    next >
Text File  |  2006-03-01  |  3KB  |  133 lines

  1. # Configuration file for the color ls utility
  2. #
  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 linux-c
  21. TERM console
  22. TERM con132x25
  23. TERM con132x30
  24. TERM con132x43
  25. TERM con132x60
  26. TERM con80x25
  27. TERM con80x28
  28. TERM con80x30
  29. TERM con80x43
  30. TERM con80x50
  31. TERM con80x60
  32. TERM gnome
  33. TERM mach-color
  34. TERM rxvt
  35. TERM screen
  36. TERM screen-w
  37. TERM vt100
  38. TERM vt102
  39. TERM xterm
  40. TERM xterm-debian
  41. TERM iterm
  42.  
  43. # EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
  44. EIGHTBIT 1
  45.  
  46. # Below are the color init strings for the basic file types. A color init
  47. # string consists of one or more of the following numeric codes:
  48. #
  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.  
  56. NORMAL 00       # global default, although everything should be something.
  57. FILE   00       # normal file
  58. DIR    01;34    # directory
  59. LINK   00;36    # symbolic link
  60. FIFO   40;33    # pipe
  61. SOCK   01;35    # socket
  62. DOOR   01;35    # door
  63. BLK    40;33;01 # block device driver
  64. CHR    40;33;01 # character device driver
  65. ORPHAN 41;33;01 # symlink to nonexistent file
  66.  
  67. # This is for files with execute permission:
  68. EXEC 00;32
  69.  
  70. # List any file extensions like '.gz' or '.tar' that you would like ls
  71. # to colorize below. Put the extension, a space, and the color init string.
  72. # (and any comments you want to add after a '#')
  73.  
  74. # executables (bright green)
  75. .cmd  00;32
  76. .exe  01;32
  77. .com  01;32
  78. .bat  01;32
  79. .btm  01;32
  80. .dll  01;32
  81.  
  82. # archives or compressed
  83. .tar  00;31
  84. .tbz  00;31
  85. .tgz  00;31
  86. .rpm  00;31
  87. .deb  00;31
  88. .arj  00;31
  89. .taz  00;31
  90. .lzh  00;31
  91. .zip  00;31
  92. .zoo  00;31
  93. .z    00;31
  94. .Z    00;31
  95. .gz   00;31
  96. .bz2  00;31
  97. .tb2  00;31
  98. .tz2  00;31
  99. .tbz2 00;31
  100.  
  101. # image formats
  102. .avi  01;35
  103. .bmp  01;35
  104. .fli  01;35
  105. .gif  01;35
  106. .jpg  01;35
  107. .jpeg 01;35
  108. .mng  01;35
  109. .mov  01;35
  110. .mpg  01;35
  111. .pcx  01;35
  112. .pbm  01;35
  113. .pgm  01;35
  114. .png  01;35
  115. .ppm  01;35
  116. .tga  01;35
  117. .tif  01;35
  118. .xbm  01;35
  119. .xpm  01;35
  120. .dl   01;35
  121. .gl   01;35
  122. .wmv  01;35
  123.  
  124. # sound formats
  125. .aiff 00;32
  126. .au   00;32
  127. .mid  00;32
  128. .mp3  00;32
  129. .ogg  00;32
  130. .voc  00;32
  131. .wav  00;32
  132.  
  133.