dotfiles/.local/bin/tempmon

16 lines
205 B
Plaintext
Raw Normal View History

2024-07-03 19:59:32 -04:00
#!/bin/sh
while read -r line; do
case $line in
*Package\ id\ 0:*) temp=$line ;;
esac
done <<EOF
$(sensors)
EOF
temp=${temp#Package id 0:*+}
temp=${temp%%°*}
temp=${temp%.*}
printf '%s°C\n' "$temp"