Fixed indents

This commit is contained in:
Jared G 2024-01-18 10:04:35 -06:00
parent 815bd7c94e
commit e8666bfac8
No known key found for this signature in database

View File

@ -1,15 +1,15 @@
function _tide_item_pi_temp
if type -q vcgencmd
vcgencmd measure_temp | string match -qr "(?<t>[\d.]+)"
if test $t -ge 80
set tide_pi_temp_color $tide_pi_temp_hi_color
else
if test $t -ge 70
set tide_pi_temp_color $tide_pi_temp_mid_color
else
set tide_pi_temp_color $tide_pi_temp_lo_color
end
if type -q vcgencmd
vcgencmd measure_temp | string match -qr "(?<t>[\d.]+)"
if test $t -ge 80
set tide_pi_temp_color $tide_pi_temp_hi_color
else
if test $t -ge 70
set tide_pi_temp_color $tide_pi_temp_mid_color
else
set tide_pi_temp_color $tide_pi_temp_lo_color
end
end
_tide_print_item pi_temp $t' ' $tide_pi_temp_icon
end
_tide_print_item pi_temp $t' ' $tide_pi_temp_icon
end
end