mirror of https://codeberg.org/anemofilia/zero
23 lines
596 B
Scheme
23 lines
596 B
Scheme
|
(define-module (buer files thinkfan)
|
||
|
#:use-module (gnu)
|
||
|
#:export (config))
|
||
|
|
||
|
(define config
|
||
|
(plain-file "thinkfan.conf"
|
||
|
"\
|
||
|
fans:
|
||
|
- tpacpi: /proc/acpi/ibm/fan
|
||
|
sensors:
|
||
|
- hwmon: /sys/devices/platform/coretemp.0/hwmon
|
||
|
indices: [1,2,3]
|
||
|
levels:
|
||
|
- [0, 0, 35]
|
||
|
- [1, 30, 40]
|
||
|
- [2, 35, 45]
|
||
|
- [3, 40, 50]
|
||
|
- [4, 45, 55]
|
||
|
- [5, 50, 60]
|
||
|
- [6, 55, 65]
|
||
|
- [7, 60, 70]
|
||
|
- [\"level full-speed\", 65, 260]"))
|