2024-03-08 14:32:05 +00:00
|
|
|
(define-module (buer files thinkfan)
|
|
|
|
#:use-module (gnu)
|
|
|
|
#:export (config))
|
|
|
|
|
|
|
|
(define config
|
|
|
|
(plain-file "thinkfan.conf"
|
2024-05-30 20:43:36 +00:00
|
|
|
"\
|
2024-03-08 14:32:05 +00:00
|
|
|
fans:
|
|
|
|
- tpacpi: /proc/acpi/ibm/fan
|
|
|
|
sensors:
|
|
|
|
- hwmon: /sys/devices/platform/coretemp.0/hwmon
|
|
|
|
indices: [1,2,3]
|
|
|
|
levels:
|
2024-07-04 00:57:42 +00:00
|
|
|
- [0, 0, 50]
|
|
|
|
- [1, 48, 52]
|
|
|
|
- [2, 50, 54]
|
|
|
|
- [3, 52, 62]
|
|
|
|
- [4, 60, 64]
|
|
|
|
- [5, 62, 66]
|
|
|
|
- [6, 64, 68]
|
|
|
|
- [7, 66, 70]
|
|
|
|
- [\"level full-speed\", 68, 260]"))
|