tpfancontrol-rs
tpfancontrol-rs copied to clipboard
Temperature and fan controller for Thinkpads on Linux
tpfancontrol-rs is a Linux TUI clone of troubadix's TPFanControl. It uses the sysfs interface exposed by the thinkpad_acpi kernel module to allow you to monitor and control the temperature and fan speeds of your Thinkpad.
Installation
-
To install from the Github repository directly, run:
argo install --git 'https://github.com/Arnavion/tpfancontrol-rs'This will compile the
tpfancontrolbinary and put it in~/.cargo/bin/ -
Alternatively, clone this repo, then run:
argo build --releaseThis will compile the
tpfancontrolbinary and put it in./target/release/
Usage
-
Ensure the
thinkpad_acpimodule has been loaded by the kernel.$ lsmod | grep '^thinkpad_acpi' thinkpad_acpi 122880 0 -
Enable the
fan_control=1option for the module and reload the module.$ echo 'options thinkpad_acpi fan_control=1' | sudo tee /etc/modprobe.d/98-thinkpad_acpi.conf options thinkpad_acpi fan_control=1 $ sudo modprobe -r thinkpad_acpi $ sudo modprobe thinkpad_acpi $ lsmod | grep '^thinkpad_acpi' thinkpad_acpi 122880 0If unloading the module fails, it's easiest and safest to just reboot.
-
Copy the
config.toml.examplefile in this repository to/etc/tpfancontrol/config.tomland edit it to match the sensors of your Thinkpad. This file contains custom names for the temperature sensors and a mapping of temperature to fan level.To discover the sensor numbers, find the hwmon node and enumerate the
temp*_inputfiles inside it. For example:$ grep -H 'thinkpad' /sys/class/hwmon/hwmon*/name /sys/class/hwmon/hwmon2/name:thinkpad $ ls -1 /sys/class/hwmon/hwmon2/temp*_input /sys/class/hwmon/hwmon2/temp1_input /sys/class/hwmon/hwmon2/temp2_input /sys/class/hwmon/hwmon2/temp3_input ...This means you have sensors numbered 1, 2, 3, and so on. Add them to the config file so
tpfancontrolcan monitor them. The names for the sensors are completely arbitrary and only used for display purposes, so you can name them whatever you like.(Note: It looks like some Thinkpads don't report any temperature sensors via the
thinkpad_acpimodule. See this issue for discussion.) -
Run the
tpfancontrolbinary that you compiled above.To allow the program to modify the fan speed, it must be run as root, such as with
sudo. If the program is run as an unprivileged user, it cannot adjust the fan speed because the hwmon interface is only writable by root. In this case the program will not adjust the fan speed based on the temperature, and the manual controls for changing the fan speed will also be locked.
Notes
- SMART mode does not have hysteresis. The fan speed will fluctuate when the temperature is near the boundary between two mappings. As a workaround, change your mapping so that the stable temperature of your Thinkpad is not near a boundary.