Color coded temperature monitor

This commit is contained in:
Jared G 2024-01-17 20:30:27 -06:00
parent 696203bf78
commit 815bd7c94e
No known key found for this signature in database
7 changed files with 27 additions and 6 deletions

View File

@ -1,6 +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
end
_tide_print_item pi_temp $t' ' $tide_pi_temp_icon
end
end

View File

@ -64,7 +64,9 @@ tide_os_color EEEEEE
tide_php_bg_color 444444
tide_php_color 617CBE
tide_pi_temp_bg_color 444444
tide_pi_temp_color $_tide_color_green
tide_pi_temp_lo_color $_tide_color_dark_green
tide_pi_temp_mid_color $_tide_color_gold
tide_pi_temp_hi_color D70000
tide_private_mode_bg_color 444444
tide_private_mode_color FFFFFF
tide_prompt_add_newline_before true

View File

@ -50,7 +50,9 @@ tide_os_color brwhite
tide_php_bg_color black
tide_php_color blue
tide_pi_temp_bg_color black
tide_pi_temp_color green
tide_pi_temp_lo_color green
tide_pi_temp_mid_color yellow
tide_pi_temp_hi_color red
tide_private_mode_bg_color black
tide_private_mode_color brwhite
tide_prompt_color_frame_and_connection brblack

View File

@ -64,7 +64,9 @@ tide_os_color normal
tide_php_bg_color normal
tide_php_color 617CBE
tide_pi_temp_bg_color normal
tide_pi_temp_color $_tide_color_green
tide_pi_temp_lo_color $_tide_color_dark_green
tide_pi_temp_mid_color $_tide_color_gold
tide_pi_temp_hi_color D70000
tide_private_mode_bg_color normal
tide_private_mode_color FFFFFF
tide_prompt_add_newline_before true

View File

@ -50,7 +50,9 @@ tide_os_color brwhite
tide_php_bg_color normal
tide_php_color blue
tide_pi_temp_bg_color normal
tide_pi_temp_color green
tide_pi_temp_lo_color green
tide_pi_temp_mid_color yellow
tide_pi_temp_hi_color red
tide_private_mode_bg_color normal
tide_private_mode_color brwhite
tide_prompt_color_frame_and_connection brblack

View File

@ -64,7 +64,9 @@ tide_os_color $os_branding_color
tide_php_bg_color 617CBE
tide_php_color 000000
tide_pi_temp_bg_color 2E3436
tide_pi_temp_color green
tide_pi_temp_lo_color 4E9A06
tide_pi_temp_mid_color $_tide_color_gold
tide_pi_temp_hi_color D70000
tide_private_mode_bg_color F1F3F4
tide_private_mode_color 000000
tide_prompt_add_newline_before true

View File

@ -50,7 +50,9 @@ tide_os_color black
tide_php_bg_color blue
tide_php_color black
tide_pi_temp_bg_color black
tide_pi_temp_color green
tide_pi_temp_lo_color green
tide_pi_temp_mid_color yellow
tide_pi_temp_hi_color red
tide_private_mode_bg_color brwhite
tide_private_mode_color black
tide_prompt_color_frame_and_connection brblack