-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.desktop_cleaner.toml
54 lines (53 loc) · 1.1 KB
/
.desktop_cleaner.toml
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
# REQUIRED: specify the name of the folders mapped to each file type
[file_types]
Notes = [".md", ".rtf", ".txt"]
Docs = [".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx"]
EXE = [".exe", ".appimage", ".msi"]
Vids = [".mp4", ".mov", ".avi", ".mkv"]
Compressed = [".zip", ".rar", ".tar", ".gz", ".7z"]
Scripts = [".sh", ".bat"]
Installers = [".deb", ".rpm"]
Books = [".epub", ".mobi"]
Music = [".mp3", ".wav", ".ogg", ".flac"]
PDFS = [".pdf"]
Pics = [".bmp", ".gif", ".jpg", ".jpeg", ".svg", ".png"]
Torrents = [".torrent"]
CODE = [
".c",
".h",
".py",
".rs",
".go",
".js",
".ts",
".jsx",
".tsx",
".html",
".css",
".php",
".java",
".cpp",
".cs",
".vb",
".sql",
".pl",
".swift",
".kt",
".r",
".m",
".asm",
]
Markup = [
".json",
".xml",
".yml",
".yaml",
".ini",
".toml",
".cfg",
".conf",
".log",
]
# OPTIONAL: debug level for stdout logging. if not specified, defaults to "off"
[debug]
level = "info" # "info", "debug", "warn", "error", "trace", "off"