blob: dc2ad35c2163c93490541fb3d4e7811fe44420dc (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
case $(hostname -s) in
mother) ;;
po-rbo) cat /sys/class/hwmon/hwmon5/temp1_input | awk '{printf (" %3.1f°C", ($1 / 1000))}' ;;
mars) echo -n "" $(sysctl -n dev.cpu.0.temperature | cut -d '.' -f1)"°C" ;;
esac
|