dotfiles/.config/polybar/scripts/system-cpu-temppercore.sh
2024-01-29 08:31:23 -06:00

4 lines
126 B
Bash

#!/bin/sh
sensors | grep Core | awk '{print substr($3, 2, length($3)-5)}' | tr "\\n" " " | sed 's/ /°C /g' | sed 's/ $//'