This repository has been archived by the owner on Mar 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
dir_colors
416 lines (392 loc) · 9.12 KB
/
dir_colors
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
#
# .dir_colors
#
TERM Eterm
TERM ansi
TERM color-xterm
TERM con132x25
TERM con132x30
TERM con132x43
TERM con132x60
TERM con80x25
TERM con80x28
TERM con80x30
TERM con80x43
TERM con80x50
TERM con80x60
TERM cons25
TERM console
TERM cygwin
TERM dtterm
TERM eterm-color
TERM gnome
TERM gnome-256color
TERM jfbterm
TERM konsole
TERM kterm
TERM linux
TERM linux-c
TERM mach-color
TERM mlterm
TERM putty
TERM rxvt
TERM rxvt-256color
TERM rxvt-cygwin
TERM rxvt-cygwin-native
TERM rxvt-unicode
TERM rxvt-unicode-256color
TERM screen
TERM screen-256color
TERM screen-256color-bce
TERM screen-bce
TERM screen-w
TERM screen.linux
TERM screen.rxvt
TERM vt100
TERM xterm
TERM xterm-16color
TERM xterm-256color
TERM xterm-88color
TERM xterm-color
TERM xterm-debian
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#NORMAL 00 # no color code at all
FILE 38;5;247 # regular file: use no color at all
RESET 0 # reset to "normal" color
#DIR 38;5;241 # directory
DIR 38;5;72 # directory
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a numerical value, the color is as for the file pointed to.)
#LINK 01;38;5;245
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link
FIFO 40;33 # pipe
SOCK 01;35 # socket
DOOR 01;35 # door
BLK 01;31 # block device driver
CHR 01;33 # character device driver
ORPHAN 01;31 # symlink to nonexistent file, or non-stat'able file
SETUID 37;41 # file that is setuid (u+s)
SETGID 30;43 # file that is setgid (g+s)
CAPABILITY 30;41 # file with capability
STICKY_OTHER_WRITABLE 36;40 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 01;36 # dir that is other-writable (o+w) and not sticky
STICKY 01;37;44 # dir with the sticky bit set (+t) and not other-writable
# executables (bright green)
EXEC 01;32
.cmd 01;32
.exe 01;32
.com 01;32
.btm 01;32
.bat 01;32
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
EIGHTBIT 1
.pdf 00;35
.djvu 38;5;54
.chm 00;33
.htm 00;33
.html 00;33
.dvi 00;33
.ps 01;33
.odt 00;32
.docx 00;32
.doc 00;32
.tex 00;32
.rtf 00;32
.sh 00;32
.csh 00;32
.t2t 00;36
.rst 00;36
# archives or compressed (bright red)
.tar 38;5;69
.tgz 38;5;69
.arj 38;5;69
.taz 38;5;69
.lzh 38;5;69
.lha 38;5;69
.lzma 38;5;69
.tlz 38;5;69
.txz 38;5;69
.zip 38;5;69
.z 38;5;69
.Z 38;5;69
.dz 38;5;69
.gz 38;5;69
.lz 38;5;69
.xz 38;5;69
.bz2 38;5;69
.bz 38;5;69
.tbz 38;5;69
.tbz2 38;5;69
.tz 38;5;69
.deb 38;5;69
.rpm 38;5;69
.jar 38;5;69
.rar 38;5;69
.ace 38;5;69
.zoo 38;5;69
.cpio 38;5;69
.7z 38;5;69
.rz 38;5;69
.iso 38;5;101
.nrg 38;5;101
.img 38;5;101
# backup, log, etc.
.pacnew 01;30
.pacsave 01;30
.tmp 01;30
.swp 01;30
.swo 01;30
.bak 01;30
.bkp 01;30
.bin 01;30
.$$$ 01;30
.aux 01;30
.out 01;30
.log 01;30
.un~ 38;5;240
.zcompdump 38;5;240
.zwc 38;5;240
# image formats
.jpg 38;5;132
.jpeg 38;5;132
.gif 38;5;132
.bmp 38;5;132
.pbm 38;5;132
.pgm 38;5;132
.ppm 38;5;132
.tga 38;5;132
.xbm 38;5;132
.xpm 38;5;132
.tif 38;5;132
.tiff 38;5;132
.png 38;5;140
.svg 38;5;132
.svgz 38;5;132
.mng 38;5;132
.pcx 38;5;132
.xcf 38;5;132
.xwd 38;5;132
.yuv 38;5;132
.cgm 38;5;132
.emf 38;5;132
# media cyan
.asx 00;36
.cue 00;36
.it 00;36
.med 00;36
.m3u 00;36
.mid 00;36
.midi 00;36
.mod 00;36
.mol 00;36
.mpl 00;36
.pls 00;36
.ra 00;36
.rm 00;36
.s3m 00;36
.umx 00;36
.xm 00;36
# video
.anx 38;5;29
.avi 38;5;29
.axv 38;5;29
.mov 38;5;29
.mpg 38;5;29
.mpeg 38;5;29
.ogm 38;5;29
.ogv 38;5;29
.ogx 38;5;29
.vob 38;5;29
.rm 38;5;61
.rmvb 38;5;61
.asf 38;5;169
.dl 38;5;169
.m2v 38;5;169
.m4v 38;5;169
.mkv 38;5;169
.mp4 38;5;169
.mp4v 38;5;169
.nuv 38;5;169
.wmv 38;5;169
.flc 38;5;167
.fli 38;5;167
.flv 38;5;167
.webm 38;5;167
.ql 38;5;167
.qt 38;5;167
.swf 38;5;167
# audio
.aac 00;34
.ape 00;34
.au 00;34
.axa 00;34
.flac 00;34
.m4a 00;34
.mka 00;34
.wav 00;34
.mp2 01;34
.mp3 01;34
.mpc 01;34
.oga 01;34
.ogg 38;5;33
.spx 01;34
.wma 01;78
# fonts
.afm 38;5;59
.pfb 38;5;58
.pfm 38;5;239
.otf 38;5;61
.dfont 38;5;61
.ttf 38;5;30
.ttc 38;5;74
.pcf 38;5;65
.psf 38;5;64
# misc
.PL 00;36
.asm 00;36
.asoundrc 00;36
.awk 00;36
# home configs
.bash 38;5;68
.bashrc 38;5;68
.bash_history 38;5;68
.bash_profile 38;5;68
.zshrc 38;5;68
.gtkrc-2.0 00;31
.gtk-bookmarks 00;31
.conkyrc 00;31
.c 38;5;35
.cfg 38;5;35
.coffee 38;5;35
.conf 38;5;35
.cpp 38;5;35
.cs 38;5;35
.css 38;5;35
.csv 38;5;35
.dircolors 01;33
.dir_colors 01;33
.enc 00;36
.eps 00;36
.etx 00;36
.ex 00;36
.example 00;36
.fehbg 00;36
.bashburnrc 00;36
.fonts 00;36
.git 00;36
.gitignore 00;36
.nvidia-settings-rc 00;36
.pwmanrc 00;36
.hgrc 01;34
.hgignore 01;34
.go 01;34
.h 01;34
.hs 01;34
.htoprc 01;34
.toprc 01;34
.displayrc 01;34
.xdvirc 01;34
.xnviewrc 01;34
.info 01;34
.ini 01;34
.java 01;34
.jhtm 01;34
.js 01;34
.jsm 01;34
.jsm 01;34
.json 01;34
.jsp 01;34
.lisp 01;34
.lesshst 01;34
.log 01;34
.xspf 01;36
.lua 00;33
.map 00;33
.markdown 00;33
.md 00;33
.mf 00;33
.mfasl 00;33
.mi 00;33
.mkd 00;33
.msmtprc 00;33
.inputrc 00;33
.mtx 00;33
.muttrc 00;33
.nfo 00;33
.netrc 01;31
.offlineimaprc 00;33
.pacnew 00;33
.patch 38;5;31
.diff 38;5;31
.pc 00;31
.pfa 00;31
.php 00;31
.pid 00;31
.pl 01;36
.pm 00;31
.pod 00;31
.py 00;31
.rc 00;31
.rb 08;36
.rdf 00;31
.ru 00;31
.sed 00;31
.sfv 00;31
.signature 00;31
.sty 01;35
.sug 01;35
.t 01;35
.tcl 01;35
.tdy 01;35
.textile 01;35
.tfm 01;35
.tfnt 01;35
.theme 01;35
.viminfo 38;5;23
.xml 01;35
.yml 01;35
.zsh 38;5;25
.gpg 38;5;208
.urlview 01;35
.vim 01;34
.vimrc 01;34
.NERDTreeBookmarks 38;5;23
.docutils 01;35
.latexmkrc 01;35
.xinitrc 01;31
.Xauthority 01;31
.gpg-agent-info 01;31
.Xmodmap 00;31
.Xresources 01;33
.gitconfig 01;33
.gitk 01;33
.hgk 01;33
.rarreg.key 00;32
.pinforc 00;32
.tigrc 00;32
.tarsnaprc 00;32
.torrent 38;5;67
# sysd file types
*.mount 01;32
*.path 01;33
*.rules 00;34
*.socket 00;35
*.service 00;33
*.target 00;35
#...and the files they point to
MISSING 01;05;37;41
# Extra command line options for ls go here.
# Basically these ones are:
# -F = show '/' for dirs, '*' for executables, etc.
# -T 0 = don't trust tab spacing when formatting ls output.
# -b = better support for special characters
OPTIONS -F -b -T 0
# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
# pipes. 'all' adds color characters to all output. 'none' shuts colorization
# off.
COLOR all