summaryrefslogtreecommitdiffstats
path: root/polybar/OpenBSD-cpu-temp.sh
blob: 728ab39a777a66024c7a3078854604f88a470c5c (plain)
1
2
3
4
5
6
#!/usr/bin/env bash

while true; do
  sysctl hw.sensors.ksmn0.temp | cut -d'=' -f2 | cut -d'.' -f1
  sleep 1
done