Skip to content

Commit

Permalink
Color coded temperature monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
epid committed Jan 18, 2024
1 parent 696203b commit 815bd7c
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
9 changes: 9 additions & 0 deletions functions/_tide_item_pi_temp.fish
Original file line number Diff line number Diff line change
@@ -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
4 changes: 3 additions & 1 deletion functions/tide/configure/configs/classic.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion functions/tide/configure/configs/classic_16color.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion functions/tide/configure/configs/lean.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion functions/tide/configure/configs/lean_16color.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion functions/tide/configure/configs/rainbow.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion functions/tide/configure/configs/rainbow_16color.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 815bd7c

Please sign in to comment.