mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-21 03:04:38 +10:00
13 lines
170 B
Bash
Executable File
13 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Main
|
|
cpuTemp=$(sensors | grep Tctl | head -1 | awk -F '+' '{print $2}')
|
|
|
|
if [[ -n $cpuTemp ]]; then
|
|
echo "$cpuTemp";
|
|
else
|
|
echo "n/a";
|
|
fi
|
|
|
|
exit
|