-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
macfand.conf
52 lines (44 loc) · 1.32 KB
/
macfand.conf
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
# macfand - Fan Control daemon for Apple Computers running Linux
# Configuration File
#
config:
{
# Profiles Directory
profileDir = "/usr/local/macfand/machines";
# Model Identifier
modelID = "macpro1,1";
# Configuration values
# uncomment if using generic or wish to tweak settings
#temp_avg_floor - What is considered normal temp (avg of all sensors)
#temp_avg_floor = 45;
#temp_avg_ceiling - What is considered hot (sets full fan speed) (avg of all sensors)
#temp_avg_ceiling = 55;
#blacklist - Sensors to ignore
#blacklist = ("TC0P", "TM0P");
#fan_ctrl - Sets which sensors should control each fan
#This is an array of elements, such as:
#fan_ctrl = (
# {
# # fan 1
# fan_sensors = ("TC0P", "TM0P", "TM8P");
# floor = 45;
# ceiling = 55;
# min_speed = 1500;
# max_speed = 6200;
# },
# {
# # fan 2
# use_avg = true; # use all available sensors average to determine fan speed
# floor = 45;
# ceiling = 55;
# min_speed = 1500;
# max_speed = 6200;
# }, ...
#);
#log_level - Logging Verbosity
# 0 - startup/exit logging only
# 1 - basic temp / fan logging
# 2 - log all sensors
#
log_level = 1;
}