From 8cac63f68793a5a667ed96ce1f1fa538ad64f6df Mon Sep 17 00:00:00 2001 From: Jared G Date: Sat, 20 Jan 2024 12:31:06 -0600 Subject: [PATCH] Added missing flags to set --- functions/_tide_item_pi_temp.fish | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/_tide_item_pi_temp.fish b/functions/_tide_item_pi_temp.fish index 9b9059e..e0008ba 100644 --- a/functions/_tide_item_pi_temp.fish +++ b/functions/_tide_item_pi_temp.fish @@ -2,12 +2,12 @@ function _tide_item_pi_temp if type -q vcgencmd vcgencmd measure_temp | string match -qr "(?[\d.]+)" if test $t -ge 80 - set tide_pi_temp_color $tide_pi_temp_hi_color + set -fx 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 + set -fx tide_pi_temp_color $tide_pi_temp_mid_color else - set tide_pi_temp_color $tide_pi_temp_lo_color + set -fx tide_pi_temp_color $tide_pi_temp_lo_color end end _tide_print_item pi_temp $t' ' $tide_pi_temp_icon