Guest User

Untitled

a guest
Feb 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  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.  
  4. # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
  5. # slackware version of dircolors) are recognized but ignored.
  6.  
  7. # Below, there should be one TERM entry for each termtype that is colorizable
  8. TERM linux
  9. TERM linux-c
  10. TERM mach-color
  11. TERM console
  12. TERM con132x25
  13. TERM con132x30
  14. TERM con132x43
  15. TERM con132x60
  16. TERM con80x25
  17. TERM con80x28
  18. TERM con80x30
  19. TERM con80x43
  20. TERM con80x50
  21. TERM con80x60
  22. TERM xterm
  23. TERM xterm-color
  24. TERM xterm-debian
  25. TERM rxvt
  26. TERM screen
  27. TERM screen-w
  28. TERM vt100
  29.  
  30. # Below are the color init strings for the basic file types. A color init
  31. # string consists of one or more of the following numeric codes:
  32. # Attribute codes:
  33. # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
  34. # Text color codes:
  35. # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
  36. # Background color codes:
  37. # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
  38. NORMAL 00 # global default, although everything should be something.
  39. FILE 00 # normal file
  40. DIR 01;36 # directory
  41. LINK 01;37 # symbolic link. (If you set this to 'target' instead of a
  42. # numerical value, the color is as for the file pointed to.)
  43. FIFO 4033 # pipe
  44. SOCK 0135 # socket
  45. DOOR 0135 # door
  46. BLK 403301 # block device driver
  47. CHR 403301 # character device driver
  48. ORPHAN 403101 # symlink to nonexistent file
  49.  
  50. # This is for files with execute permission:
  51. EXEC 01;35
  52.  
  53. # List any file extensions like '.gz' or '.tar' that you would like ls
  54. # to colorize below. Put the extension, a space, and the color init string.
  55. # (and any comments you want to add after a '#')
  56.  
  57. # If you use DOS-style suffixes, you may want to uncomment the following:
  58. #.cmd 0132 # executables (bright green)
  59. #.exe 0132
  60. #.com 0132
  61. #.btm 0132
  62. #.bat 0132
  63.  
  64. .tar 01;31 # archives or compressed (bright red)
  65. .tgz 01;31
  66. .arj 01;31
  67. .taz 01;31
  68. .lzh 01;31
  69. .zip 01;31
  70. .z 01;31
  71. .Z 01;31
  72. .gz 01;31
  73. .bz2 01;31
  74. .deb 01;31
  75. .rpm 01;31
  76. .jar 01;31
  77. .dmg 01;31
  78.  
  79. # image formats
  80. .jpg 01;35
  81. .png 01;35
  82. .gif 01;35
  83. .bmp 01;35
  84. .ppm 01;35
  85. .tga 01;35
  86. .xbm 01;35
  87. .xpm 01;35
  88. .tif 01;35
  89. .png 01;35
  90. .mpg 01;35
  91. .avi 01;35
  92. .fli 01;35
  93. .gl 01;35
  94. .dl 01;35
  95.  
  96. # source code files
  97. .pl 00;33
  98. .PL 00;33
  99. .pm 00;33
  100. .tt 00;33
  101. .yml 00;33
  102. .sql 00;33
  103. .html 00;33
  104. .css 00;33
  105. .js 00;33
Add Comment
Please, Sign In to add comment