summaryrefslogtreecommitdiffstats
path: root/config/mimetype.toml
blob: 9a28df77f76d5c46c1d6810c2444a13c7bb5f019 (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
# specify which applications to use to open certain file types
[mimetypes]
"audio/mpeg" = [
	["mpv"]
]
"application/x-matroska" = [
	["mpv"]
]
"application/x-shellscript" = [
	["nano"],
	["gedit"]
]
"image/jpeg" = [
	["qimgv"],
	["feh"]
]
"image/png" = [
	["qimgv"],
	["feh", "-F"]
]
"text/plain" = [
	["nano"]
]
"text/x-csrc" = [
	["nano"]
]
"audio/x-wav" = [
	[ "mpv" ]
]
"video/mp4" = [
	["mpv"]
]