dotfiles

annotate .dircolorsrc @ 3:4c1ead2dc501

xinitrc and screenrc added; code cleanups
author meillo@marmaro.de
date Wed, 25 Apr 2007 20:42:44 +0200
parents a5f356e3bebc
children
rev   line source
meillo@3 1 # markus schnalke -- http://marmaro.de
meillo@3 2
meillo@3 3
meillo@0 4 # Configuration file for dircolors, a utility to help you set the
meillo@0 5 # LS_COLORS environment variable used by GNU ls with the --color option.
meillo@0 6 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
meillo@0 7 # slackware version of dircolors) are recognized but ignored.
meillo@0 8 # Below, there should be one TERM entry for each termtype that is colorizable
meillo@0 9 TERM linux
meillo@0 10 TERM linux-c
meillo@0 11 TERM mach-color
meillo@0 12 TERM console
meillo@0 13 TERM con132x25
meillo@0 14 TERM con132x30
meillo@0 15 TERM con132x43
meillo@0 16 TERM con132x60
meillo@0 17 TERM con80x25
meillo@0 18 TERM con80x28
meillo@0 19 TERM con80x30
meillo@0 20 TERM con80x43
meillo@0 21 TERM con80x50
meillo@0 22 TERM con80x60
meillo@0 23 TERM cygwin
meillo@0 24 TERM dtterm
meillo@0 25 TERM mlterm
meillo@0 26 TERM putty
meillo@0 27 TERM xterm
meillo@0 28 TERM xterm-color
meillo@0 29 TERM xterm-debian
meillo@0 30 TERM rxvt
meillo@0 31 TERM rxvt-unicode
meillo@0 32 TERM screen
meillo@0 33 TERM screen-bce
meillo@0 34 TERM screen-w
meillo@0 35 TERM vt100
meillo@0 36 TERM Eterm
meillo@0 37
meillo@0 38 # Below are the color init strings for the basic file types. A color init
meillo@0 39 # string consists of one or more of the following numeric codes:
meillo@0 40 # Attribute codes:
meillo@0 41 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
meillo@0 42 # Text color codes:
meillo@0 43 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
meillo@0 44 # Background color codes:
meillo@0 45 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
meillo@0 46
meillo@0 47 NORMAL 00 # global default, although everything should be something.
meillo@0 48 FILE 00 # normal file
meillo@0 49 DIR 01;34 # directory
meillo@0 50 LINK target # symbolic link. (If you set this to 'target' instead of a
meillo@0 51 FIFO 40;33 # pipe
meillo@0 52 SOCK 01;35 # socket
meillo@0 53 DOOR 01;35 # door
meillo@0 54 BLK 40;33;01 # block device driver
meillo@0 55 CHR 40;33;01 # character device driver
meillo@0 56 ORPHAN 40;31;01 # symlink to nonexistent file
meillo@0 57
meillo@0 58 SETUID 37;41 # file that is setuid (u+s)
meillo@0 59 SETGID 30;43 # file that is setgid (g+s)
meillo@0 60 STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
meillo@0 61 OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
meillo@0 62 STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
meillo@0 63 EXEC 01;32 # This is for files with execute permission
meillo@0 64
meillo@0 65
meillo@0 66
meillo@0 67 # List any file extensions like '.gz' or '.tar' that you would like ls
meillo@0 68 # to colorize below. Put the extension, a space, and the color init string.
meillo@0 69 # (and any comments you want to add after a '#')
meillo@0 70 # If you use DOS-style suffixes, you may want to uncomment the following:
meillo@0 71
meillo@0 72 # archives or compressed (bright red)
meillo@0 73 .tar 00;31
meillo@0 74 .tgz 00;31
meillo@0 75 .arj 00;31
meillo@0 76 .taz 00;31
meillo@0 77 .lzh 00;31
meillo@0 78 .zip 00;31
meillo@0 79 .z 00;31
meillo@0 80 .Z 00;31
meillo@0 81 .gz 00;31
meillo@0 82 .bz2 00;31
meillo@0 83 .deb 00;31
meillo@0 84 .rpm 00;31
meillo@0 85 .jar 00;31
meillo@0 86
meillo@0 87 # image formats
meillo@0 88 .jpg 01;35
meillo@0 89 .jpeg 01;35
meillo@0 90 .gif 01;35
meillo@0 91 .bmp 01;35
meillo@0 92 .pbm 01;35
meillo@0 93 .pgm 01;35
meillo@0 94 .ppm 01;35
meillo@0 95 .tga 01;35
meillo@0 96 .xbm 01;35
meillo@0 97 .xpm 01;35
meillo@0 98 .tif 01;35
meillo@0 99 .tiff 01;35
meillo@0 100 .png 01;35
meillo@0 101 .mov 01;35
meillo@0 102 .mpg 01;35
meillo@0 103 .mpeg 01;35
meillo@0 104 .avi 01;35
meillo@0 105 .fli 01;35
meillo@0 106 .gl 01;35
meillo@0 107 .dl 01;35
meillo@0 108 .xcf 01;35
meillo@0 109 .xwd 01;35
meillo@0 110
meillo@0 111 # audio formats
meillo@0 112 .flac 01;35
meillo@0 113 .mp3 01;35
meillo@0 114 .mpc 01;35
meillo@0 115 .ogg 01;35
meillo@0 116 .wav 01;35