summaryrefslogtreecommitdiffstats
path: root/.local/bin/status/sb-temp
blob: dfa17c78c53f75e4b51553a5a858376ccbe592af (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 ("^c#fb4934^ %3.1f°C", ($1 / 1000))}' ;;
	mars) echo -n "" $(sysctl -n dev.cpu.0.temperature | cut -d '.' -f1)"°C" ;;
esac