Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ print_info "Checking if mouse jiggler is enabled..."
} >> "${LOG_FILE}"

print_info "Checking temperature..."
printf "%s\n" "$(vcgencmd measure_temp)" >> "${LOG_FILE}"
{
vcgencmd measure_temp | sed 's/temp=/CPU Temperature: /g'
} >> "${LOG_FILE}"

print_info "Checking throttled state..."
printf "%s\n\n" "$(vcgencmd get_throttled)" >> "${LOG_FILE}"
Expand Down