-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_dir_colors
476 lines (438 loc) · 9.45 KB
/
dot_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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
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 screen*
TERM st
TERM st-256color
TERM terminator
TERM vt100
TERM xterm*
# 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 00 # regular file: use no color at all
RESET 0 # reset to "normal" color
DIR 01;34 # directory
LINK target # symbolic link. (If you set this to 'target' instead of a
MULTIHARDLINK 00 # regular file with more than one link
FIFO 40;33 # pipe
SOCK 35 # socket
DOOR 35 # door
BLK 40;33;01 # block device driver
CHR 40;33;01 # character device driver
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
MISSING 00 # ... and the files they point to
SETUID 30;41;01 # file that is setuid (u+s)
SETGID 30;43;01 # file that is setgid (g+s)
CAPABILITY 30;41;01 # file with capability
STICKY_OTHER_WRITABLE 30;42;01 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 30;46;01 # dir that is other-writable (o+w) and not sticky
STICKY 30;44;01 # dir with the sticky bit set (+t) and not other-writable
# Executables
EXEC 33;01
# Scripts & exec
.cmd 33
.exe 33
.com 33
.btm 33
.bat 33
.sh 33
.bash 33
.csh 33
.zsh 33
.zsh-theme 33
.fish 33
# Libs
.dll 34
.class 34
.node 34
.pyc 34
.so 34
.pyo 34
# Archives or compressed
.tar 32
.tgz 32
.arc 32
.arj 32
.taz 32
.lha 32
.lz4 32
.lzh 32
.lzma 32
.tlz 32
.txz 32
.tzo 32
.t7z 32
.zip 32
.z 32
.Z 32
.dz 32
.gz 32
.lrz 32
.lz 32
.lzo 32
.xz 32
.zst 32
.tzst 32
.bz2 32
.bz 32
.tbz 32
.tbz2 32
.tz 32
.ear 32
.sar 32
.rar 32
.alz 32
.ace 32
.zoo 32
.cpio 32
.7z 32
.rz 32
.cab 32
.wim 32
.swm 32
.dwm 32
.esd 32
.apk 32
.gem 32
.xpi 32
.crx 32
# Packaged apps
.apk 33
.deb 33
.rpm 33
.jad 33
.jar 33
.war 33
.cab 33
.pak 33
.pk3 33
.vdf 33
.vpk 33
.bsp 33
.dmg 33
.msi 33
# Partition images
.dmg 31
.iso 31
.bin 31
.nrg 31
.qcow 31
.sparseimage 31
.toast 31
.vcd 31
.vmdk 31
# Image formats
.jpg 35
.jpeg 35
.gif 35
.webp 35
.wma 35
.bmp 35
.pbm 35
.pgm 35
.ppm 35
.tga 35
.xbm 35
.xpm 35
.tif 35
.tiff 35
.png 35
.svg 35
.svgz 35
.mng 35
.pcx 35
.ico 35
.eps 35
# Video formats
.mov 34
.movie 34
.mpg 34
.mpeg 34
.m2v 34
.mkv 34
.webm 34
.ogm 34
.mp4 34
.m4v 34
.mp4v 34
.vob 34
.qt 34
.nuv 34
.wmv 34
.asf 34
.rm 34
.rmvb 34
.avi 34
.flv 34
.gl 34
.dl 34
.xcf 34
.xwd 34
.yuv 34
.emf 34
.ogv 34
.ogx 34
.3g2 34
.3gp 34
.3gp2 34
.3gpp 34
# Audio formats
.aac 36
.au 36
.flac 36
.m4a 36
.mid 36
.midi 36
.mka 36
.mp3 36
.mpc 36
.ogg 36
.ra 36
.wav 36
.oga 36
.opus 36
.spx 36
.xspf 36
# Document formats
.doc 36
.docx 36
.odt 36
# Presentation formats
.ppt 33
.pptx 33
.odp 33
# Spreadsheet formats
.xlsx 34
.xls 34
.ods 34
.csv 34
.tsv 34
# Book formats
.pdf 31
.djvu 36
.epub 36
# Source formats
.c 34
.h 34
.hpp 34
.cc 34
.cpp 34
.cs 32
.go 34
.rs 33
.java 31
.pas 35
.py 34
.ipynb 34
.rb 31
.erb 31
.gemspec 31
.ru 31
.lua 35
.xlt 32
.sql 34
.groovy 36
.dsl 36
.js 33
.jsx 33
.ts 33
.tsx 33
.coffee 33
.php 34
.css 32
.sss 32
.less 32
.scss 32
.sass 32
.stylus 32
.html 34
.xhtml 34
.htm 34
.hjs 34
.haml 34
.slim 34
.jade 34
.pug 34
.vue 32
.scala 31
.json 34
.cson 34
.yml 35
.yaml 35
.xml 35
.md 31
.markdown 31
.tex 35
.latex 35
.pl 33
.hs 34
.lhs 34
.map 36
.vim 32
.txt 0
# Special configs
*package.json 4;35
*bower.json 4;35
*Gemfile 4;35
*Rakefile 4;35
*Makefile 4;35
*Cargo.toml 4;33
*Vagrantfile 4;34
*node_modules 32
*tsconfig.json 2;34
*tsconfig.*.json 2;34
*jsdoc.json 2;34
*.babelrc 2;33
*.babel.js 2;33
*.babelrc.js 2;33
*.babel.json 2;33
*.babelrc.json 2;33
*babelrc 2;33
*babel.js 2;33
*babelrc.js 2;33
*babel.json 2;33
*babelrc.json 2;33
*babel.json 2;33
*babel.*.js 2;33
*rollup.*.json 2;33
*rollup.*.js 2;33
*.eslintrc 2;35
*.eslintrc.js 2;35
*.eslintrc.json 2;35
*package-lock.json 2;35
# SSH
*known_hosts 36
*config 36
*authorized_keys 36
# RC files
*.xinitrc 34
*.xbindkeysrc 34
*.Xresources 34
*.profile 33
*.bashrc 33
*.bash_profile 33
*.bashrc.aliases 33
*.bash_logout 33
*.bashrc 33
*.bashrc 33
*.zprofile 33
*.zshrc 33
*.zshrc.local 33
*.vimrc 32
# databases
.db 35
.sqlite3 35
.sqlite 35
.sqlite-wal 35
# Fonts
.ttf 33
.woff 33
.woff2 33
.afm 33
.fon 33
.fnt 33
.pfb 33
.pfm 33
.otf 33
# Patch files
.diff 30;41
.patch 30;41
# Files
*LICENSE 4;33
*README 4;33
*README.md 4;31
# Configs
.cfg 36
.conf 36
.ini 36
# Encrypted data
.asc 31
.enc 31
.gpg 31
.signature 31
.sig 31
.p12 31
.pem 31
.pgp 31
.asc 31
.enc 31
.sig 31
.p7s 31
*id_dsa 31
*id_rsa 31
*id_ecdsa 31
*id_ed25519 31
# Git
*.gitignore 2;34
# /etc/hosts.{deny,allow}
.allow 32
.deny 31
# Systemd
# http://www.freedesktop.org/software/systemd/man/systemd.unit.html
.service 34
*@.service 34
.socket 34
.swap 34
.device 34
.mount 34
.automount 34
.target 34
.path 34
.timer 34
.snapshot 34
.slice 34
# Files
.torrent 32
.directory 34
.desktop 34
# Map data
.kml 35
.kmz 35
# Other
.log 2;37
.zwc 2;37
.log 2;37
.lock 2;37
.old 2;37
.o 2;37
*~ 2;37
*tmp 2;37
*out 2;37
*bak 2;37
*swp 2;37
*cache 2;37
*part 2;37
*.zsh_history 2;37
*.zcompdump 2;37
*.bash_history 2;37
*.viminfo 2;37