-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
70 lines (67 loc) · 1.44 KB
/
config.yaml
File metadata and controls
70 lines (67 loc) · 1.44 KB
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
tasks:
- label: Camera-Pics
name: Pictures
source: /storage/self/primary/DCIM/Camera
target: /Users/user/Pictures
target_subdir: '%Y_%m_%d' # any string which includes format directives for time conversion (https://docs.python.org/3/library/time.html#time.strftime)
synced: '2026-03-15 15:30:00'
include:
- startswith: # applied to directories and files
- IMG_202603
endswith: # applied to files only
- .jpg
- .jpeg
- .heic
- .heif
ignore: # applied to files only
- startswith:
- .trashed-
- Burstshoot
- label: Camera-Movs
name: Movies
source: /storage/self/primary/DCIM/Camera
target: /Users/user/Movies
target_subdir: '%Y_%m_%d'
synced: '2026-03-15 15:30:00'
include:
- startswith:
- VID_2026
endswith:
- .mp4
- .mov
- .mkv
ignore:
- startswith:
- .trashed-
- Burstshoot
- label: Pictures-Pics
name: Pictures
source: /storage/self/primary/Pictures
target: /Users/user/Pictures/2026
target_subdir: 'Pictures_%Y_%m_%d'
synced: '2026-03-15 15:30:00'
include:
- endswith:
- .jpg
- .jpeg
- .heic
- .heif
ignore:
- startswith:
- .trashed-
- label: Downloads-Docs
name: Downloads
source: /storage/self/primary/Download
target: /Users/user/Downloads
target_subdir:
synced: '2026-03-15 15:30:00'
include:
- endswith:
- .docx
- .pdf
- .xlsx
- .zip
- .png
ignore:
- startswith:
- .trashed-