-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
91 lines (85 loc) · 2.47 KB
/
config.example.yaml
File metadata and controls
91 lines (85 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
output_dir: docs/img/
extensions:
- .jpg
- .jpeg
- .png
- .webp
anti_patterns:
- "*.tmp"
- "*.partial"
- "*.DS_Store"
events:
new_phone_2022:
type: marker
date: 2022-10-30
label: New Phone
phd_defense:
type: band
after: 2017-02-01
before: 2017-07-31
label: PhD Defense
data:
# Keep screenshot* prefix for web-app screenshot discovery.
screenshot-phone:
label: screenshot (phone)
color: "#2468b4"
methods:
- timestamp
sources:
phone:
path: ~/Shared/Phone/Pictures/Screenshots
exclude: []
patterns:
- name: Screenshot_YYYYMMDD-HHMMSS.png
regex: ^Screenshot_\d{8}-\d{6}\.png$
timestamp_format: "Screenshot_%Y%m%d-%H%M%S.png"
- name: Screenshot_YYYYMMDD-HHMMSS~N.png
regex: ^Screenshot_\d{8}-\d{6}~\d+\.png$
timestamp_regex: Screenshot_(\d{8})-(\d{6})~\d+\.png
timestamp_components_format: "%Y%m%d%H%M%S"
screenshot-laptop:
label: screenshot (laptop)
color: "#2aa7a1"
methods:
- timestamp
sources:
laptop:
# Ubuntu/XDG default screenshot location.
path: ~/Pictures/Screenshots
exclude: []
patterns:
- name: Screenshot From YYYY-MM-DD HH-MM-SS.png
regex: ^Screenshot From \d{4}-\d{2}-\d{2} \d{2}-\d{2}-\d{2}\.png$
timestamp_format: "Screenshot From %Y-%m-%d %H-%M-%S.png"
- name: Screenshot from YYYY-MM-DD HH-MM-SS.png
regex: ^Screenshot from \d{4}-\d{2}-\d{2} \d{2}-\d{2}-\d{2}\.png$
timestamp_format: "Screenshot from %Y-%m-%d %H-%M-%S.png"
- name: Screenshot_YYYY-MM-DD-HH-MM-SS.png
regex: ^Screenshot_\d{4}-\d{2}-\d{2}-\d{2}-\d{2}-\d{2}\.png$
timestamp_format: "Screenshot_%Y-%m-%d-%H-%M-%S.png"
- name: Screenshot at YYYY-MM-DD HH:MM:SS.png
regex: ^Screenshot at \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.png$
timestamp_format: "Screenshot at %Y-%m-%d %H:%M:%S.png"
plots:
screenshots:
series:
- screenshot-phone
- screenshot-laptop
output_dirname: screenshot
title: Screenshot Activity
value_label: Screenshots
day_origin_hour: 8
figures:
- kind: histogram
mode: hour
filename: hour.png
title: Screenshot Activity by Hour of Day
y_label: Images (max-normalized to 100)
series:
- screenshot-phone
- screenshot-laptop
- kind: heatmap_per_source
series_key: source
events:
- new_phone_2022
- phd_defense