#!/usr/bin/env bash # SPDX-FileCopyrightText: 2021-2022 Citadel and contributors # # SPDX-License-Identifier: GPL-3.0-or-later # If vcgencmd is available, use it to get the temperature and exit if command -v vcgencmd &> /dev/null; then echo "$(vcgencmd measure_temp)" | cut -d '=' -f 2 | cut -d '.' -f 1 exit 0 fi cat /sys/class/thermal/thermal_zone0/temp | awk '{print int($1/1000)}'