65faf8
# Configuration file for the 256color ls utility
65faf8
# This file goes in the /etc directory, and must be world readable.
65faf8
# Synchronized with coreutils 8.5 dircolors
65faf8
# You can copy this file to .dir_colors in your $HOME directory to override
65faf8
# the system defaults.
65faf8
# In the case that you are not satisfied with supplied colors, please
65faf8
# submit your color configuration or attach your file with colors readable
65faf8
# on ALL color background schemas (white,gray,black) to RedHat Bugzilla
65faf8
# ticket on https://bugzilla.redhat.com/show_bug.cgi?id=429121 . TIA.
65faf8
# Please just keep ls color conventions from 8 color scheme.
65faf8
65faf8
# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
65faf8
# pipes. 'all' adds color characters to all output. 'none' shuts colorization
65faf8
# off.
65faf8
COLOR tty
65faf8
65faf8
# Extra command line options for ls go here.
65faf8
# Basically these ones are:
65faf8
#  -F = show '/' for dirs, '*' for executables, etc.
65faf8
#  -T 0 = don't trust tab spacing when formatting ls output.
65faf8
OPTIONS -F -T 0
65faf8
65faf8
# Below, there should be one TERM entry for each termtype that is colorizable
65faf8
TERM putty-256color
65faf8
TERM rxvt-256color
65faf8
TERM rxvt-unicode-256color
65faf8
TERM rxvt-unicode256
65faf8
TERM screen-256color
65faf8
TERM xterm-256color
65faf8
TERM gnome-256color
65faf8
TERM st-256color
65faf8
65faf8
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
65faf8
EIGHTBIT 1
65faf8
65faf8
# Below are the color init strings for the basic file types. A color init
65faf8
# string consists of one or more of the following numeric codes:
65faf8
# Attribute codes:
65faf8
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
65faf8
# Text color(8 colors mode) codes:
65faf8
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
65faf8
# Background color(8 colors mode) codes:
65faf8
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
65faf8
# Text color(256 colors mode) codes:
65faf8
# Valid syntax for text 256color is 38;5;<color number> , where color number
65faf8
# is number between 0 and 255.
65faf8
# You may find following command useful to search the best one for you:
65faf8
# for ((x=0; x<=255; x++));do echo -e "${x}:\033[38;5;${x}mcolor\033[000m";done
65faf8
# Background color(256 colors mode) codes:
65faf8
# Valid syntax for background 256color is 48;5;<color number> , where
65faf8
# color number is number between 0 and 255.
65faf8
# You may find following command useful to search the best one for you:
65faf8
# for ((x=0; x<=255; x++));do echo -e "${x}:\033[48;5;${x}mcolor\033[000m";done
65faf8
65faf8
#NORMAL 00	# global default, no color code at all
65faf8
#FILE 00	# normal file, use no color at all
65faf8
RESET 0 # reset to "normal" color
65faf8
DIR 38;5;27	# directory
65faf8
LINK 38;5;51	# symbolic link (If you set this to 'target' instead of a
65faf8
		# numerical value, the color is as for the file pointed to.)
65faf8
MULTIHARDLINK 44;38;5;15 # regular file with more than one link
65faf8
FIFO 40;38;5;11	# pipe
65faf8
SOCK 38;5;13	# socket
65faf8
DOOR 38;5;5	# door
65faf8
BLK 48;5;232;38;5;11	# block device driver
65faf8
CHR 48;5;232;38;5;3	# character device driver
65faf8
ORPHAN 48;5;232;38;5;9  # symlink to nonexistent file, or non-stat'able file
65faf8
MISSING 05;48;5;232;38;5;15 # ... and the files they point to
65faf8
SETUID 48;5;196;38;5;15	# file that is setuid (u+s)
65faf8
SETGID 48;5;11;38;5;16	# file that is setgid (g+s)
65faf8
CAPABILITY 48;5;196;38;5;226	# file with capability
65faf8
STICKY_OTHER_WRITABLE 48;5;10;38;5;16 # dir that is sticky and other-writable (+t,o+w)
65faf8
OTHER_WRITABLE 48;5;10;38;5;21 # dir that is other-writable (o+w) and not sticky
65faf8
STICKY 48;5;21;38;5;15	# dir with the sticky bit set (+t) and not other-writable
65faf8
65faf8
# This is for files with execute permission:
65faf8
EXEC 38;5;34
65faf8
65faf8
# List any file extensions like '.gz' or '.tar' that you would like ls
65faf8
# to colorize below. Put the extension, a space, and the color init string.
65faf8
# (and any comments you want to add after a '#')
65faf8
# executables (bright green)
65faf8
#.cmd 38;5;34
65faf8
#.exe 38;5;34
65faf8
#.com 38;5;34
65faf8
#.btm 38;5;34
65faf8
#.bat 38;5;34
65faf8
#.sh  38;5;34
65faf8
#.csh 38;5;34
65faf8
65faf8
# archives or compressed (bright red)
65faf8
.tar 38;5;9
65faf8
.tgz 38;5;9
65faf8
.arc 38;5;9
65faf8
.arj 38;5;9
65faf8
.taz 38;5;9
65faf8
.lha 38;5;9
65faf8
.lz4 38;5;9
65faf8
.lzh 38;5;9
65faf8
.lzma 38;5;9
65faf8
.tlz 38;5;9
65faf8
.txz 38;5;9
65faf8
.tzo 38;5;9
65faf8
.t7z 38;5;9
65faf8
.zip 38;5;9
65faf8
.z   38;5;9
65faf8
.Z   38;5;9
65faf8
.dz  38;5;9
65faf8
.gz  38;5;9
65faf8
.lrz 38;5;9
65faf8
.lz  38;5;9
65faf8
.lzo 38;5;9
65faf8
.xz  38;5;9
65faf8
.bz2 38;5;9
65faf8
.bz  38;5;9
65faf8
.tbz 38;5;9
65faf8
.tbz2 38;5;9
65faf8
.tz  38;5;9
65faf8
.deb 38;5;9
65faf8
.rpm 38;5;9
65faf8
.jar 38;5;9
65faf8
.war 38;5;9
65faf8
.ear 38;5;9
65faf8
.sar 38;5;9
65faf8
.rar 38;5;9
65faf8
.alz 38;5;9
65faf8
.ace 38;5;9
65faf8
.zoo 38;5;9
65faf8
.cpio 38;5;9
65faf8
.7z  38;5;9
65faf8
.rz  38;5;9
65faf8
.cab 38;5;9
65faf8
65faf8
# image formats (magenta)
65faf8
.jpg 38;5;13
65faf8
.jpeg 38;5;13
65faf8
.gif 38;5;13
65faf8
.bmp 38;5;13
65faf8
.pbm 38;5;13
65faf8
.pgm 38;5;13
65faf8
.ppm 38;5;13
65faf8
.tga 38;5;13
65faf8
.xbm 38;5;13
65faf8
.xpm 38;5;13
65faf8
.tif 38;5;13
65faf8
.tiff 38;5;13
65faf8
.png 38;5;13
65faf8
.svg 38;5;13
65faf8
.svgz 38;5;13
65faf8
.mng 38;5;13
65faf8
.pcx 38;5;13
65faf8
.mov 38;5;13
65faf8
.mpg 38;5;13
65faf8
.mpeg 38;5;13
65faf8
.m2v 38;5;13
65faf8
.mkv 38;5;13
65faf8
.webm 38;5;13
65faf8
.ogm 38;5;13
65faf8
.mp4 38;5;13
65faf8
.m4v 38;5;13
65faf8
.mp4v 38;5;13
65faf8
.vob 38;5;13
65faf8
.qt  38;5;13
65faf8
.nuv 38;5;13
65faf8
.wmv 38;5;13
65faf8
.asf 38;5;13
65faf8
.rm  38;5;13
65faf8
.rmvb 38;5;13
65faf8
.flc 38;5;13
65faf8
.avi 38;5;13
65faf8
.fli 38;5;13
65faf8
.flv 38;5;13
65faf8
.gl 38;5;13
65faf8
.dl 38;5;13
65faf8
.xcf 38;5;13
65faf8
.xwd 38;5;13
65faf8
.yuv 38;5;13
65faf8
.cgm 38;5;13
65faf8
.emf 38;5;13
65faf8
65faf8
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
65faf8
.axv 38;5;13
65faf8
.anx 38;5;13
65faf8
.ogv 38;5;13
65faf8
.ogx 38;5;13
65faf8
65faf8
# audio formats (cyan)
65faf8
.aac 38;5;45
65faf8
.au 38;5;45
65faf8
.flac 38;5;45
65faf8
.mid 38;5;45
65faf8
.midi 38;5;45
65faf8
.mka 38;5;45
65faf8
.mp3 38;5;45
65faf8
.mpc 38;5;45
65faf8
.ogg 38;5;45
65faf8
.ra 38;5;45
65faf8
.wav 38;5;45
65faf8
65faf8
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
65faf8
.axa 38;5;45
65faf8
.oga 38;5;45
65faf8
.spx 38;5;45
65faf8
.xspf 38;5;45
65faf8
65faf8
# colorize binary documents (brown)
65faf8
#.pdf 00;33
65faf8
#.ps 00;33
65faf8
#.ps.gz 00;33
65faf8
#.tex 00;33
65faf8
#.xls 00;33
65faf8
#.xlsx 00;33
65faf8
#.ppt 00;33
65faf8
#.pptx 00;33
65faf8
#.rtf 00;33
65faf8
#.doc 00;33
65faf8
#.docx 00;33
65faf8
#.odt 00;33
65faf8
#.ods 00;33
65faf8
#.odp 00;33
65faf8
#.epub 00;33
65faf8
#.abw 00;33
65faf8
#.wpd 00;33
65faf8
#
65faf8
# colorize text documents (brown)
65faf8
#.txt 00;33
65faf8
#.patch 00;33
65faf8
#.diff 00;33
65faf8
#.log 00;33
65faf8
#.htm 00;33
65faf8
#.html 00;33
65faf8
#.shtml 00;33
65faf8
#.xml 00;33