For those who feel like compiling something, create file temp.c with the following: #include <stdio.h> int main(int argc, char *argv[]) { FILE *fp; int temp = 0; fp = fopen("/sys/class/thermal/thermal_zone0/temp", "r"); fscanf(fp, "%d", &temp); printf(">> CPU Temp: %.2f°C\n", temp / 1000.0); fclose...