void-packages

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

DIR_COLORS.256color (4919B)


      1# Configuration file for the 256color 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# In the case that you are not satisfied with supplied colors, please
      6# submit your color configuration or attach your file with colors readable
      7# on ALL color background schemas (white,gray,black) to RedHat Bugzilla
      8# ticket on https://bugzilla.redhat.com/show_bug.cgi?id=429121 . TIA.
      9# Please just keep ls color conventions from 8 color scheme.
     10
     11# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
     12# pipes. 'all' adds color characters to all output. 'none' shuts colorization
     13# off.
     14COLOR tty
     15
     16# Extra command line options for ls go here.
     17# Basically these ones are:
     18#  -F = show '/' for dirs, '*' for executables, etc.
     19#  -T 0 = don't trust tab spacing when formatting ls output.
     20OPTIONS -F -T 0
     21
     22# Below, there should be one TERM entry for each termtype that is colorizable
     23TERM putty-256color
     24TERM rxvt-256color
     25TERM screen-256color
     26TERM xterm-256color
     27TERM gnome-256color
     28
     29# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
     30EIGHTBIT 1
     31
     32# Below are the color init strings for the basic file types. A color init
     33# string consists of one or more of the following numeric codes:
     34# Attribute codes: 
     35# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
     36# Text color(8 colors mode) codes:
     37# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
     38# Background color(8 colors mode) codes:
     39# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
     40# Text color(256 colors mode) codes:
     41# Valid syntax for text 256color is 38;5;<color number> , where color number
     42# is number between 0 and 255.
     43# You may find following command useful to search the best one for you:
     44# for ((x=0; x<=255; x++));do echo -e "${x}:\033[38;5;${x}mcolor\033[000m";done
     45# Background color(256 colors mode) codes:
     46# Valid syntax for background 256color is 48;5;<color number> , where
     47# color number is number between 0 and 255.
     48# You may find following command useful to search the best one for you:
     49# for ((x=0; x<=255; x++));do echo -e "${x}:\033[48;5;${x}mcolor\033[000m";done
     50
     51NORMAL 00	# global default, although everything should be something.
     52FILE 00 	# normal file
     53DIR 01;38;5;27 	# directory
     54LINK 01;38;5;51 	# symbolic link (If you set this to 'target' instead of a
     55		# numerical value, the color is as for the file pointed to.)
     56FIFO 40;38;5;11	# pipe
     57SOCK 01;38;5;13	# socket
     58DOOR 01;38;5;5	# door
     59BLK 01;48;5;232;38;5;11	# block device driver
     60CHR 01;48;5;232;38;5;3 	# character device driver
     61ORPHAN 01;48;5;232;38;5;9  # symlink to nonexistent file, or non-stat'able file
     62MISSING 01;05;48;5;232;38;5;15 # ... and the files they point to
     63SETUID 48;5;196;38;5;15	# file that is setuid (u+s)
     64SETGID 48;5;11;38;5;16	# file that is setgid (g+s)
     65CAPABILITY 48;5;196;38;5;226	# file with capability
     66STICKY_OTHER_WRITABLE 48;5;10;38;5;16 # dir that is sticky and other-writable (+t,o+w)
     67OTHER_WRITABLE 48;5;10;38;5;21 # dir that is other-writable (o+w) and not sticky
     68STICKY 48;5;21;38;5;15	# dir with the sticky bit set (+t) and not other-writable
     69
     70# This is for files with execute permission:
     71EXEC 01;38;5;34
     72
     73# List any file extensions like '.gz' or '.tar' that you would like ls
     74# to colorize below. Put the extension, a space, and the color init string.
     75# (and any comments you want to add after a '#')
     76# executables (bright green)
     77#.cmd 01;38;5;34
     78#.exe 01;38;5;34
     79#.com 01;38;5;34
     80#.btm 01;38;5;34
     81#.bat 01;38;5;34
     82#.sh  01;38;5;34
     83#.csh 01;38;5;34
     84 # archives or compressed (bright red)
     85.tar 01;38;5;9 
     86.tgz 01;38;5;9
     87.svgz 01;38;5;9
     88.arj 01;38;5;9
     89.taz 01;38;5;9
     90.lzh 01;38;5;9
     91.lzma 01;38;5;9
     92.zip 01;38;5;9
     93.z   01;38;5;9
     94.Z   01;38;5;9
     95.dz  01;38;5;9
     96.gz  01;38;5;9
     97.bz2 01;38;5;9
     98.tbz2 01;38;5;9
     99.bz  01;38;5;9
    100.tz  01;38;5;9
    101.deb 01;38;5;9
    102.rpm 01;38;5;9
    103.jar 01;38;5;9
    104.rar 01;38;5;9
    105.ace 01;38;5;9
    106.zoo 01;38;5;9
    107.cpio 01;38;5;9
    108.7z  01;38;5;9
    109.rz  01;38;5;9
    110# image formats (magenta)
    111.jpg 01;38;5;13 
    112.jpeg 01;38;5;13
    113.gif 01;38;5;13
    114.bmp 01;38;5;13
    115.pbm 01;38;5;13
    116.pgm 01;38;5;13
    117.ppm 01;38;5;13
    118.tga 01;38;5;13
    119.xbm 01;38;5;13
    120.xpm 01;38;5;13
    121.tif 01;38;5;13
    122.tiff 01;38;5;13
    123.png 01;38;5;13
    124.mng 01;38;5;13
    125.pcx 01;38;5;13
    126.mov 01;38;5;13
    127.mpg 01;38;5;13
    128.mpeg 01;38;5;13
    129.m2v 01;38;5;13
    130.mkv 01;38;5;13
    131.ogm 01;38;5;13
    132.mp4 01;38;5;13
    133.m4v 01;38;5;13
    134.mp4v 01;38;5;13
    135.vob 01;38;5;13
    136.qt  01;38;5;13
    137.nuv 01;38;5;13
    138.wmv 01;38;5;13
    139.asf 01;38;5;13
    140.rm  01;38;5;13
    141.rmvb 01;38;5;13
    142.flc 01;38;5;13
    143.avi 01;38;5;13
    144.fli 01;38;5;13
    145.gl 01;38;5;13
    146.dl 01;38;5;13
    147.xcf 01;38;5;13
    148.xwd 01;38;5;13
    149.yuv 01;38;5;13
    150.svg 01;38;5;13
    151# audio formats (cyan)
    152.aac 00;38;5;45
    153.au 00;38;5;45
    154.flac 00;38;5;45
    155.mid 00;38;5;45
    156.midi 00;38;5;45
    157.mka 00;38;5;45
    158.mp3 00;38;5;45
    159.mpc 00;38;5;45
    160.ogg 00;38;5;45
    161.ra 00;38;5;45
    162.wav 00;38;5;45