dotfiles/.config/dircolors

214 lines
4.6 KiB
Plaintext
Raw Normal View History

2019-05-28 17:44:30 +02:00
# List of TERM entries for each termtype that is colorizable
TERM gnome-256color
TERM konsole-256color
TERM putty-256color
TERM rxvt-256color
TERM rxvt-unicode256
TERM screen-256color
TERM xterm-256color
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
#
# Text color (8 colors mode) codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
#
# Background color (8 colors mode) codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#
# Text color (256 colors mode) codes:
# 38;5;$n, where $n is a number between 0 and 255. (0 has no color)
# You can use the following command to find one you like:
# for ((n=0;++n<256;)) { printf "\033[38;5;${n}m$n\033[000m "; }
#
2019-11-23 15:52:40 +01:00
# Background color (256 colors mode) codes:
2019-05-28 17:44:30 +02:00
# 38;5;$n, where $n is a number between 0 and 255. (0 has no color)
# You can use the following command to find one you like:
# for ((n=0;++n<256;)) { printf "\033[48;5;${n}m$n\033[000m "; }
# File types {{{
2019-06-11 15:44:42 +02:00
BLK 48;5;232;38;5;11 # block device driver
CAPABILITY 48;5;196;38;5;226 # file with capability
CHR 48;5;232;38;5;3 # character device driver
DIR 38;5;27 # directory
DOOR 38;5;5 # door
EXEC 38;5;34 # file with execute permission (+x)
FIFO 40;38;5;11 # pipe
FILE 00 # normal file, use no color at all
LINK 38;5;51 # symbolic link
MISSING 48;5;232;38;5;15 # file pointed to by an orphan link
MULTIHARDLINK 44;38;5;15 # regular file with more than one link
NORMAL 00 # global default, no color code at all
2019-11-23 15:52:40 +01:00
ORPHAN 48;5;232;38;5;9 # symlink to nonexistent file, or non-statable file
2019-06-11 15:44:42 +02:00
OTHER_WRITABLE 48;5;10;38;5;21 # dir that is other-writable (o+w) and not sticky
RESET 0 # reset to "normal" color
SETGID 48;5;11;38;5;16 # file that is setgid (g+s)
SETUID 48;5;196;38;5;15 # file that is setuid (u+s)
SOCK 38;5;13 # socket
STICKY 48;5;21;38;5;15 # dir with the sticky bit set (+t) and not other-writable
STICKY_OTHER_WRITABLE 48;5;10;38;5;16 # dir that is sticky and other-writable (+t,o+w)
2019-05-28 17:44:30 +02:00
# }}}
# File extensions {{{
# windows files (green) {{{
.bat 38;5;36
.BAT 38;5;36
.btm 38;5;36
.BTM 38;5;36
.cmd 38;5;36
.CMD 38;5;36
.com 38;5;36
.COM 38;5;36
.exe 38;5;36
.EXE 38;5;36
.lnk 38;5;36
.LNK 38;5;36
# }}}
# archives or compressed (gray) {{{
.7z 38;5;247
.ace 38;5;247
.apk 38;5;247
.arj 38;5;247
2019-06-11 15:44:42 +02:00
.br 38;5;247
2019-05-28 17:44:30 +02:00
.bz 38;5;247
.bz2 38;5;247
2019-06-11 15:44:42 +02:00
.cb7 38;5;247
.cbr 38;5;247
.cbz 38;5;247
.cbt 38;5;247
2019-05-28 17:44:30 +02:00
.cpio 38;5;247
.deb 38;5;247
.dz 38;5;247
2019-06-11 15:44:42 +02:00
.egg 38;5;247
2019-05-28 17:44:30 +02:00
.gz 38;5;247
.jar 38;5;247
2019-06-11 15:44:42 +02:00
.kra 38;5;247
2019-05-28 17:44:30 +02:00
.lz 38;5;247
.lzh 38;5;247
.lzma 38;5;247
2019-06-11 15:44:42 +02:00
.ora 38;5;247
2019-11-10 17:43:16 +01:00
.piz 38;5;247
2020-10-12 15:22:20 +02:00
.pja 38;5;247
2019-05-28 17:44:30 +02:00
.rar 38;5;247
.rpm 38;5;247
.rz 38;5;247
.tar 38;5;247
.taz 38;5;247
2021-02-22 17:41:12 +01:00
.tbr 38;5;247
2019-05-28 17:44:30 +02:00
.tbz 38;5;247
.tbz2 38;5;247
.tgz 38;5;247
.tlz 38;5;247
.txz 38;5;247
2021-02-22 17:41:12 +01:00
.tzst 38;5;247
2019-05-28 17:44:30 +02:00
.tz 38;5;247
2019-06-11 15:44:42 +02:00
.whl 38;5;247
2019-05-28 17:44:30 +02:00
.xz 38;5;247
.Z 38;5;247
2019-06-11 15:44:42 +02:00
.z 38;5;247
2019-05-28 17:44:30 +02:00
.zip 38;5;247
.zoo 38;5;247
2020-04-25 21:12:40 +02:00
.zst 38;5;247
2019-05-28 17:44:30 +02:00
# }}}
# image formats (magenta) {{{
.apng 38;5;13
2019-10-30 10:01:14 +01:00
.avif 38;5;13
2019-05-28 17:44:30 +02:00
.bmp 38;5;13
.bpg 38;5;13
2019-06-11 15:44:42 +02:00
.eps 38;5;13
.exr 38;5;13
2019-05-28 17:44:30 +02:00
.flif 38;5;13
.gif 38;5;13
.heic 38;5;13
.heif 38;5;13
.ico 38;5;13
.icon 38;5;13
.j2k 38;5;13
.jp2 38;5;13
.jpeg 38;5;13
.jpf 38;5;13
.jpg 38;5;13
.jpm 38;5;13
.jpx 38;5;13
.mng 38;5;13
.pbm 38;5;13
.pcx 38;5;13
.pgm 38;5;13
2020-10-12 15:22:20 +02:00
.pjg 38;5;13
2019-05-28 17:44:30 +02:00
.png 38;5;13
.ppm 38;5;13
2020-10-12 15:22:20 +02:00
.psd 38;5;13
2019-05-28 17:44:30 +02:00
.svg 38;5;13
.svgz 38;5;13
.tga 38;5;13
.tif 38;5;13
.tiff 38;5;13
.webp 38;5;13
.xbm 38;5;13
.xpm 38;5;13
# }}}
# video formats (orange) {{{
.anx 38;5;202
.asf 38;5;202
.avi 38;5;202
.axv 38;5;202
2019-09-25 20:07:56 +02:00
.bik 38;5;202
.bk2 38;5;202
2019-05-28 17:44:30 +02:00
.cgm 38;5;202
.dl 38;5;202
2019-10-30 10:01:14 +01:00
.drc 38;5;202
2019-05-28 17:44:30 +02:00
.emf 38;5;202
.flc 38;5;202
.fli 38;5;202
.flv 38;5;202
.gl 38;5;202
2019-10-30 10:01:14 +01:00
.hevc 38;5;202
2019-05-28 17:44:30 +02:00
.m2v 38;5;202
.m4v 38;5;202
.mkv 38;5;202
.mov 38;5;202
.mp4 38;5;202
.mp4v 38;5;202
.mpeg 38;5;202
.mpg 38;5;202
.nuv 38;5;202
.ogm 38;5;202
.ogv 38;5;202
.ogx 38;5;202
.qt 38;5;202
.rm 38;5;202
.rmvb 38;5;202
.vob 38;5;202
2019-09-25 20:07:56 +02:00
.webm 38;5;202
2019-05-28 17:44:30 +02:00
.wmv 38;5;202
.xcf 38;5;202
.xwd 38;5;202
.yuv 38;5;202
# }}}
# audio formats (cyan) {{{
.aac 38;5;45
2019-09-25 20:07:56 +02:00
.ac3 38;5;45
2019-05-28 17:44:30 +02:00
.au 38;5;45
.axa 38;5;45
.flac 38;5;45
.mid 38;5;45
.midi 38;5;45
.mka 38;5;45
.mp3 38;5;45
.mpc 38;5;45
.oga 38;5;45
.ogg 38;5;45
2019-09-25 20:07:56 +02:00
.opus 38;5;45
2019-05-28 17:44:30 +02:00
.ra 38;5;45
.spx 38;5;45
.wav 38;5;45
.xspf 38;5;45
# }}}
# }}}
2019-09-25 20:07:56 +02:00
# vim:ft=dircolors:fdm=marker:fdl=1: