misc: cleanup

This commit is contained in:
Dylan Araps 2018-06-05 13:12:29 +10:00
parent d8f7e8df54
commit e95776d40b
1 changed files with 10 additions and 12 deletions

View File

@ -1774,10 +1774,8 @@ get_cpu() {
fi
# Get CPU temp.
if [[ -f "$temp_dir" ]]; then
deg="$(< "$temp_dir")"
deg="$((deg * 100 / 10000))"
fi
[[ -f "$temp_dir" ]] && \
deg="$(($(< "$temp_dir") * 100 / 10000))"
# Get CPU cores.
case "$cpu_cores" in