dwmbar/modules/fanspeed
2019-10-24 20:09:35 +01:00

13 lines
172 B
Bash
Executable file

#!/bin/bash
# Prints the fan RPM
# Depends on lm_sensors
PREFIX=' '
get_fan_speed()
{
echo "$PREFIX$(sensors | grep fan1 | cut -d " " -f 9) RPM"
}
get_fan_speed