mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
13 lines
178 B
Bash
Executable file
13 lines
178 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Prints the fan RPM
|
|
# Depends on lm_sensors
|
|
|
|
PREFIX=' '
|
|
|
|
get_fan_speed()
|
|
{
|
|
echo "$PREFIX$(sensors | grep fan1 | awk 'NR==1{print $2}') RPM"
|
|
}
|
|
|
|
get_fan_speed
|