mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 12:00:24 +10:00
8 lines
99 B
Bash
Executable File
8 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Main
|
|
cpuTemp=$(sensors | grep Tctl | awk -F '+' '{print $2}')
|
|
echo "$cpuTemp"
|
|
|
|
exit
|