Added alias to print raspberry pi temperature.

This commit is contained in:
Heavy 2024-01-26 12:56:23 +01:00
parent dd7c7e7e0c
commit 372df5685c

View File

@ -90,3 +90,8 @@ fi
if [ -x /usr/bin/fdfind ]; then if [ -x /usr/bin/fdfind ]; then
alias fd='fdfind' alias fd='fdfind'
fi fi
# raspberry pi commands
if [ -x /usr/bin/vcgencmd ]; then
alias pi-temp='vcgencmd measure_temp'
fi