blob: 1f671107dda67267567d274e92910f2d1b8cab13 (
plain)
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
|
# _______ __ __
#| \ | \ | \
#| $$$$$$$\ \$$ ______ _______ ______ | $$ ______ __ __ ______ _______
#| $$ | $$| \ / \ / \ / \ | $$ / \ | \ | \ / \ / \
#| $$ | $$| $$| $$$$$$\| $$$$$$$| $$$$$$\| $$| $$$$$$\| $$ | $$| $$$$$$\| $$$$$$$
#| $$ | $$| $$| $$ \$$| $$ | $$ | $$| $$| $$ | $$| $$ | $$| $$ \$$ \$$ \
#| $$__/ $$| $$| $$ | $$_____ | $$__/ $$| $$| $$__/ $$| $$__/ $$| $$ _\$$$$$$\
#| $$ $$| $$| $$ \$$ \ \$$ $$| $$ \$$ $$ \$$ $$| $$ | $$
# \$$$$$$$ \$$ \$$ \$$$$$$$ \$$$$$$ \$$ \$$$$$$ \$$$$$$ \$$ \$$$$$$$
#Redisributed by Shipwreckt
#Email: shipwreckt@mailfence.com
#website: shipwreckt.co.uk
# Note to the USer
# Hi there I do hope you like the colours I have chosen but if not you are welcome to change them!
# ===================================================================
# Terminal filters
# ===================================================================
# Below are TERM or COLORTERM entries, which can be glob patterns, which
# restrict following config to systems with matching environment variables.
COLORTERM ?*
TERM Eterm
TERM ansi
TERM *color*
TERM con[0-9]*x[0-9]*
TERM cons25
TERM console
TERM cygwin
TERM *direct*
TERM dtterm
TERM gnome
TERM hurd
TERM jfbterm
TERM konsole
TERM kterm
TERM linux
TERM linux-c
TERM mlterm
TERM putty
TERM rxvt*
TERM screen*
TERM st
TERM terminator
TERM tmux*
TERM vt100
TERM xterm*
# Basic file attributes / misc colours
DIR 01;38;5;61 #Directory
EXEC 01;32
MISSING 00
#Text files / Libreoffice files
.txt 1;38;5;244
.odt 1;38;5;31
.ods 1;38;5;34
# Programming colours (Variaty of colours)
.git 1;38;5;166
.toml 1;38;5;166
.conf 1;38;5;82
.ini 1;38;5;83
.bk 4;38;5;167
.html 1;38;5;166
.css 1;38;5;195
.js 1;38;5;11
.py 1;38;5;31
.c 1;38;5;67
.sh 01;32
# compressed files (Maroon)
.zip 01;31
.jar 01;31
.tar 01;31
.deb 01;31
.apk 01;31
.tz 01;31
.gz 01;31
#Video (Red)
.mp4 1;38;5;160
.webm 1;38;5;160
.mkv 0;38;5;160
.mov 0;38;5;160
# Images (Dark blue)
.jpeg 0;38;5;27
.webp 1;38;5;27
.jpg 0;38;5;27
.png 0;38;5;27
.gif 0;38;5;27
# Audio (Red)
.mp3 1;38;5;124
.wav 1;38;5;124
.ogg 1;38;5;124
# Winodws related (sky blue underlined)
.cmd 4;38;5;117
.exe 4;38;5;117
.com 4;38;5;117
.btm 4;38;5;117
.bat 4;38;5;117
#Misc files
.desktop 2;38;5;85
|