-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.toml
More file actions
45 lines (39 loc) · 1.15 KB
/
config.toml
File metadata and controls
45 lines (39 loc) · 1.15 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
[display]
refresh_rate = 1.0 # seconds
theme = "default" # default/dark/matrix
time_window = 300 # seconds of history to display
[sensors]
# Temperature thresholds (Celsius)
cpu_temp_critical = 85
cpu_temp_warning = 75
gpu_temp_critical = 90
gpu_temp_warning = 80
# Usage thresholds (Percentage)
cpu_usage_warning = 80
cpu_usage_critical = 95
memory_usage_warning = 80
memory_usage_critical = 90
# Power thresholds (Watts)
cpu_power_warning = 100
cpu_power_critical = 200
gpu_power_warning = 250
gpu_power_critical = 400
[charts]
default_type = "line" # line/scatter/bar
smooth_updates = true
auto_scale = true
max_data_points = 3600 # Maximum data points to retain
dual_axis_threshold = 2 # Maximum different units allowed
[ui]
compact_mode_width = 100 # Terminal width threshold for compact mode
compact_mode_height = 20 # Terminal height threshold for compact mode
show_legend = true
show_grid = true
animation_speed = "normal" # slow/normal/fast
[alerts]
enable_visual_alerts = true
enable_audio_alerts = false
blink_critical_values = true
critical_color = "red"
warning_color = "yellow"
normal_color = "green"