public
Description: An attempt to standardize my bash init files
Clone URL: git://github.com/JackDanger/jackbash.git
Search Repo:
Adding dir_colors configuration script
Jack Danger Canty (author)
Fri Apr 18 09:46:05 -0700 2008
commit  11a44229ce81886c4ffddf1bfa2b99891644dea0
tree    caa1c038f7c578cd34a8d5b5edbea898a0a4a39c
parent  a6847d4aa9847b7113082f7d323ff7ebaaa6e007
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
0
@@ -1 +1,184 @@
0
+# Configuration file for dircolors, a utility to help you set the
0
+# LS_COLORS environment variable used by GNU ls with the --color option.
0
+
0
+# Copyright (C) 1996, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
0
+# Free Software Foundation, Inc.
0
+# Copying and distribution of this file, with or without modification,
0
+# are permitted provided the copyright notice and this notice are preserved.
0
+#
0
+# You can copy this file to .dir_colors in your $HOME directory to override
0
+# the system defaults.
0
+
0
+# Below, there should be one TERM entry for each termtype that is colorizable
0
+TERM Eterm
0
+TERM ansi
0
+TERM color-xterm
0
+TERM con132x25
0
+TERM con132x30
0
+TERM con132x43
0
+TERM con132x60
0
+TERM con80x25
0
+TERM con80x28
0
+TERM con80x30
0
+TERM con80x43
0
+TERM con80x50
0
+TERM con80x60
0
+TERM cons25
0
+TERM console
0
+TERM cygwin
0
+TERM dtterm
0
+TERM gnome
0
+TERM gnome-256color
0
+TERM konsole
0
+TERM kterm
0
+TERM linux
0
+TERM linux-c
0
+TERM mach-color
0
+TERM mlterm
0
+TERM putty
0
+TERM rxvt
0
+TERM rxvt-cygwin
0
+TERM rxvt-cygwin-native
0
+TERM rxvt-unicode
0
+TERM screen
0
+TERM screen-bce
0
+TERM screen-w
0
+TERM screen.linux
0
+TERM vt100
0
+TERM xterm
0
+TERM xterm-256color
0
+TERM xterm-color
0
+TERM xterm-debian
0
+
0
+# Below are the color init strings for the basic file types. A color init
0
+# string consists of one or more of the following numeric codes:
0
+# Attribute codes:
0
+# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
0
+# Text color codes:
0
+# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
0
+# Background color codes:
0
+# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
0
+NORMAL 00 # global default, although everything should be something.
0
+FILE 00 # normal file
0
+DIR 01;32 # directory
0
+LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
0
+ # numerical value, the color is as for the file pointed to.)
0
+FIFO 40;33 # pipe
0
+SOCK 01;35 # socket
0
+DOOR 01;35 # door
0
+BLK 40;33;01 # block device driver
0
+CHR 40;33;01 # character device driver
0
+ORPHAN 01;05;37;41 # orphaned syminks
0
+MISSING 01;05;37;41 # ... and the files they point to
0
+SETUID 37;41 # file that is setuid (u+s)
0
+SETGID 30;43 # file that is setgid (g+s)
0
+STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
0
+OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
0
+STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
0
+
0
+# This is for files with execute permission:
0
+EXEC 01;32
0
+
0
+# List any file extensions like '.gz' or '.tar' that you would like ls
0
+# to colorize below. Put the extension, a space, and the color init string.
0
+# (and any comments you want to add after a '#')
0
+
0
+# If you use DOS-style suffixes, you may want to uncomment the following:
0
+#.cmd 01;32 # executables (bright green)
0
+#.exe 01;32
0
+#.com 01;32
0
+#.btm 01;32
0
+#.bat 01;32
0
+# Or if you want to colorize scripts even if they do not have the
0
+# executable bit actually set.
0
+#.sh 01;32
0
+#.csh 01;32
0
+
0
+ # archives or compressed (bright red)
0
+.tar 01;31
0
+.tgz 01;31
0
+.arj 01;31
0
+.taz 01;31
0
+.lzh 01;31
0
+.zip 01;31
0
+.z 01;31
0
+.Z 01;31
0
+.gz 01;31
0
+.bz2 01;31
0
+.bz 01;31
0
+.tbz2 01;31
0
+.tz 01;31
0
+.deb 01;31
0
+.rpm 01;31
0
+.jar 01;31
0
+.rar 01;31
0
+.ace 01;31
0
+.zoo 01;31
0
+.cpio 01;31
0
+.7z 01;31
0
+.rz 01;31
0
+
0
+# image formats
0
+.jpg 01;35
0
+.jpeg 01;35
0
+.gif 01;35
0
+.bmp 01;35
0
+.pbm 01;35
0
+.pgm 01;35
0
+.ppm 01;35
0
+.tga 01;35
0
+.xbm 01;35
0
+.xpm 01;35
0
+.tif 01;35
0
+.tiff 01;35
0
+.png 01;35
0
+.mng 01;35
0
+.pcx 01;35
0
+.mov 01;35
0
+.mpg 01;35
0
+.mpeg 01;35
0
+.m2v 01;35
0
+.mkv 01;35
0
+.ogm 01;35
0
+.mp4 01;35
0
+.m4v 01;35
0
+.mp4v 01;35
0
+.vob 01;35
0
+.qt 01;35
0
+.nuv 01;35
0
+.wmv 01;35
0
+.asf 01;35
0
+.rm 01;35
0
+.rmvb 01;35
0
+.flc 01;35
0
+.avi 01;35
0
+.fli 01;35
0
+.gl 01;35
0
+.dl 01;35
0
+.xcf 01;35
0
+.xwd 01;35
0
+.yuv 01;35
0
+
0
+# Document files
0
+.pdf 00;32
0
+.ps 00;32
0
+.txt 00;32
0
+.patch 00;32
0
+.diff 00;32
0
+.log 00;32
0
+.tex 00;32
0
+.doc 00;32
0
+
0
+# audio formats
0
+.aac 00;36
0
+.au 00;36
0
+.flac 00;36
0
+.mid 00;36
0
+.midi 00;36
0
+.mka 00;36
0
+.mp3 00;36
0
+.mpc 00;36
0
+.ogg 00;36
0
+.ra 00;36
0
+.wav 00;36

Comments

    No one has commented yet.