.dircolors 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. # Configuration file for dircolors, a utility to help you set the
  2. # LS_COLORS environment variable used by GNU ls with the --color option.
  3. # Copyright (C) 1996-2016 Free Software Foundation, Inc.
  4. # Copying and distribution of this file, with or without modification,
  5. # are permitted provided the copyright notice and this notice are preserved.
  6. # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
  7. # slackware version of dircolors) are recognized but ignored.
  8. # Below are TERM entries, which can be a glob patterns, to match
  9. # against the TERM environment variable to determine if it is colorizable.
  10. TERM Eterm
  11. TERM ansi
  12. TERM color-xterm
  13. TERM con[0-9]*x[0-9]*
  14. TERM cons25
  15. TERM console
  16. TERM cygwin
  17. TERM dtterm
  18. TERM eterm-color
  19. TERM gnome
  20. TERM gnome-256color
  21. TERM hurd
  22. TERM jfbterm
  23. TERM konsole
  24. TERM kterm
  25. TERM linux
  26. TERM linux-c
  27. TERM mach-color
  28. TERM mach-gnu-color
  29. TERM mlterm
  30. TERM putty
  31. TERM putty-256color
  32. TERM rxvt*
  33. TERM screen*
  34. TERM st
  35. TERM st-256color
  36. TERM terminator
  37. TERM tmux*
  38. TERM vt100
  39. TERM xterm*
  40. # Below are the color init strings for the basic file types. A color init
  41. # string consists of one or more of the following numeric codes:
  42. # Attribute codes:
  43. # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
  44. # Text color codes:
  45. # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
  46. # Background color codes:
  47. # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
  48. #NORMAL 00 # no color code at all
  49. #FILE 00 # regular file: use no color at all
  50. RESET 0 # reset to "normal" color
  51. DIR 01;34 # directory
  52. LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
  53. # numerical value, the color is as for the file pointed to.)
  54. MULTIHARDLINK 00 # regular file with more than one link
  55. FIFO 40;33 # pipe
  56. SOCK 01;35 # socket
  57. DOOR 01;35 # door
  58. BLK 40;33;01 # block device driver
  59. CHR 40;33;01 # character device driver
  60. ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
  61. MISSING 00 # ... and the files they point to
  62. SETUID 37;41 # file that is setuid (u+s)
  63. SETGID 30;43 # file that is setgid (g+s)
  64. CAPABILITY 30;41 # file with capability
  65. STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
  66. OTHER_WRITABLE 1;42 # dir that is other-writable (o+w) and not sticky
  67. STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
  68. # This is for files with execute permission:
  69. EXEC 01;32
  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. # If you use DOS-style suffixes, you may want to uncomment the following:
  74. #.cmd 01;32 # executables (bright green)
  75. #.exe 01;32
  76. #.com 01;32
  77. #.btm 01;32
  78. #.bat 01;32
  79. # Or if you want to colorize scripts even if they do not have the
  80. # executable bit actually set.
  81. #.sh 01;32
  82. #.csh 01;32
  83. # archives or compressed (bright red)
  84. .tar 01;31
  85. .tgz 01;31
  86. .arc 01;31
  87. .arj 01;31
  88. .taz 01;31
  89. .lha 01;31
  90. .lz4 01;31
  91. .lzh 01;31
  92. .lzma 01;31
  93. .tlz 01;31
  94. .txz 01;31
  95. .tzo 01;31
  96. .t7z 01;31
  97. .zip 01;31
  98. .z 01;31
  99. .Z 01;31
  100. .dz 01;31
  101. .gz 01;31
  102. .lrz 01;31
  103. .lz 01;31
  104. .lzo 01;31
  105. .xz 01;31
  106. .bz2 01;31
  107. .bz 01;31
  108. .tbz 01;31
  109. .tbz2 01;31
  110. .tz 01;31
  111. .deb 01;31
  112. .rpm 01;31
  113. .jar 01;31
  114. .war 01;31
  115. .ear 01;31
  116. .sar 01;31
  117. .rar 01;31
  118. .alz 01;31
  119. .ace 01;31
  120. .zoo 01;31
  121. .cpio 01;31
  122. .7z 01;31
  123. .rz 01;31
  124. .cab 01;31
  125. # image formats
  126. .jpg 01;35
  127. .jpeg 01;35
  128. .gif 01;35
  129. .bmp 01;35
  130. .pbm 01;35
  131. .pgm 01;35
  132. .ppm 01;35
  133. .tga 01;35
  134. .xbm 01;35
  135. .xpm 01;35
  136. .tif 01;35
  137. .tiff 01;35
  138. .png 01;35
  139. .svg 01;35
  140. .svgz 01;35
  141. .mng 01;35
  142. .pcx 01;35
  143. .mov 01;35
  144. .mpg 01;35
  145. .mpeg 01;35
  146. .m2v 01;35
  147. .mkv 01;35
  148. .webm 01;35
  149. .ogm 01;35
  150. .mp4 01;35
  151. .m4v 01;35
  152. .mp4v 01;35
  153. .vob 01;35
  154. .qt 01;35
  155. .nuv 01;35
  156. .wmv 01;35
  157. .asf 01;35
  158. .rm 01;35
  159. .rmvb 01;35
  160. .flc 01;35
  161. .avi 01;35
  162. .fli 01;35
  163. .flv 01;35
  164. .gl 01;35
  165. .dl 01;35
  166. .xcf 01;35
  167. .xwd 01;35
  168. .yuv 01;35
  169. .cgm 01;35
  170. .emf 01;35
  171. # http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
  172. .ogv 01;35
  173. .ogx 01;35
  174. # audio formats
  175. .aac 00;36
  176. .au 00;36
  177. .flac 00;36
  178. .m4a 00;36
  179. .mid 00;36
  180. .midi 00;36
  181. .mka 00;36
  182. .mp3 00;36
  183. .mpc 00;36
  184. .ogg 00;36
  185. .ra 00;36
  186. .wav 00;36
  187. # http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
  188. .oga 00;36
  189. .opus 00;36
  190. .spx 00;36
  191. .xspf 00;36