-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini
More file actions
53 lines (38 loc) · 1.09 KB
/
config.ini
File metadata and controls
53 lines (38 loc) · 1.09 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
# Worklog Manager Configuration File
[WorkSettings]
# Work norm in hours (7.5 hours = 450 minutes)
work_norm_hours = 7.5
# Auto-save interval in seconds
auto_save_interval = 30
# Default break type when stopping work
default_break_type = general
[UI]
# Application theme (light/dark)
theme = light
# Window size (width x height)
window_size = 600x500
# Keep window always on top
always_on_top = false
# Update frequency for timer display (seconds)
timer_update_frequency = 1
[Data]
# Database backup frequency (daily/weekly/monthly)
backup_frequency = daily
# Log retention in days
log_retention_days = 365
# Default export format (csv/json/pdf)
export_format = csv
# Export directory
export_directory = exports
[Breaks]
# Break type colors (hex format)
lunch_break_color = #FFE4B5
coffee_break_color = #D2B48C
general_break_color = #F0F0F0
[Logging]
# Log level (DEBUG/INFO/WARNING/ERROR/CRITICAL)
log_level = INFO
# Log file format
log_format = %(asctime)s - %(name)s - %(levelname)s - %(message)s
# Maximum log file size in MB
max_log_size = 10