void-packages

Void Source Packages
git clone git://ezup.dev/void-packages.git
Log | Files | Refs | README | LICENSE

DIR_COLORS (3921B)


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