citadel-core/scripts/status/temperature
2022-01-28 01:52:26 -05:00

14 lines
396 B
Bash
Executable File

#!/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)}'